我是Python的新手(并且正在使用Spyder),并试图创建一些创建IMDB顶级电影的时间的直方图。我已经导入了matplotlib,numpy和pandas以及.txt文件,但是当我运行以下代码行时:

plt.hist(data.year, bins=np.arange(1950, 2013), color='#cccccc')


我收到错误消息:

Traceback (most recent call last):
  File "stdin", line 1, in <module>
AttributeError: 'module' object has no attribute 'hist'


我究竟做错了什么?

最佳答案

您的问题为您的代码提供了非常差的信息和见解。更多数据

同时检查您是否确实正确导入了模块,应具有:

import matplotlib.pyplot as plt


为了使用hist功能

关于python - AttributeError:“模块”对象没有属性“hist”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29045636/

10-12 19:31