AxesSubplot没有属性hist2d - Matplotlib

时间:2014-08-04 15:29:46

标签: python matplotlib

我试图绘制一个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安装出了什么问题?我错过了一些明显的东西吗?

0 个答案:

没有答案