AttributeError: 'module' object has no attribute 'hist'
AttributeError: 'module' object has no attribute 'hist'
我是 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 的新手(我正在使用 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
功能