AttributeError: Line2D.set() got an unexpected keyword argument 'maker'
时间: 2023-12-07 11:03:27 浏览: 581
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于在使用matplotlib绘图时,将参数名拼写错误导致的。正确的参数名应该是'marker'而不是'maker'。请检查您的代码并确保正确拼写了参数名。
以下是一个例子,展示如何使用matplotlib绘制一条线,并设置标记(marker):
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
plt.plot(x, y, marker='o') # 设置标记为圆形
plt.show()
```
阅读全文