AttributeError: module 'chart' has no attribute 'broken_line'
时间: 2023-11-28 21:46:24 浏览: 81
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
根据提供的信息,出现"AttributeError: module 'chart' has no attribute 'broken_line'"错误可能是因为您的代码中使用了chart模块中不存在的属性broken_line。请检查您的代码并确保正确导入了chart模块,并且该模块中确实存在名为broken_line的属性。
如果您想绘制折线图,可以使用matplotlib库中的plot()函数。以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
```
这将绘制一个简单的折线图,其中x轴为1到5,y轴为2到10。您可以根据需要修改x和y的值以及其他参数来自定义您的折线图。
阅读全文