python模块'pandas'没有属性'绘图'
我是Python的初学者。我遵循英特尔的机器学习课程。我在编码方面遇到一些麻烦。我在Jupyter运行下面的代码,它会产生一个AttributeError
。python模块" title="python模块">python模块'pandas'没有属性'绘图'
import pandas as pd step_data = [3620, 7891, 9761,3907, 4338, 5373]
step_counts = pd.Series(step_data,name='steps')
print(step_counts)
AttributeError: module 'pandas' has no attribute 'plotting'
回答:
见this然后。
你可以检查你的站点包里是否有(可能是空的)PyQt4目录?删除应该修复它。
请参阅本 https://github.com/pandas-dev/pandas/issues/16536
以上是 python模块'pandas'没有属性'绘图' 的全部内容, 来源链接: utcz.com/qa/257415.html