我试图绘制一个hist2d图表作为图上几个子图之一。
from matplotlib import pyplot as plt
ax = plt.subplot2grid( (3,3), (0,1) )
ax.hist2d(x_data, y_data, bins=50, cmap="Greens")
plt.show()
我得到AttributeError
抱怨'AxesSubplot' object has no attribute 'hist2d'
。 api参考和示例代码在线显示hist2d是轴的属性。我可以用我的轴对象绘制曲面和条形图,而不是hist2d。我在Google上没有运气。我的matplotlib安装出了什么问题?我错过了一些明显的东西吗?