import matplotlib.pyplot as plt
plt.plot(range(len(portvalues)),portvalues)
多次重新安装matplotlib后,我继续得到了 以下代码中出现以下错误:
AttributeError
Traceback (most recent call last)
《ipython-input-387-fee5ae6f6abc》 in 《module》()
1 import matplotlib.pyplot as plt
----> 2 plt.plot(range(len(portvalues)),portvalues)
AttributeError: 'module' object has no attribute 'plot'
如何消除错误并访问matplotlib.pyplot中的函数?谢谢。