gpt4 book ai didi

python - 属性错误 : module 'matplotlib' has no attribute 'plot'

转载 作者:太空狗 更新时间:2023-10-30 02:38:20 25 4
gpt4 key购买 nike

我正在使用 python 3.6 和一个学习者。下面是一个正弦波的简单代码。

import matplotlib.pyplot as plt 
import numpy as np

x = np.linspace(-10 , 10, 100)
y = np.sin(x)
plt.plot(x, y, marker="x")

我收到错误“AttributeError:模块‘matplotlib’没有属性‘plot’”任何帮助将不胜感激。

最佳答案

您是否正确安装了 matplotlib?我在您的代码中添加了一行以显示情节。安装 matplotlib 库后,此代码可在 Visual Studio 中正常运行。

import matplotlib.pyplot as plt 
import numpy as np

x = np.linspace(-10 , 10, 100)
y = np.sin(x)
plt.plot(x, y, marker="x")
plt.show()

关于python - 属性错误 : module 'matplotlib' has no attribute 'plot' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47324756/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com