matplotlib折线数据点怎么设置
时间: 2023-11-24 19:55:09 浏览: 43
matplotlib绘制简单地折线图
5星 · 资源好评率100%
可以使用`marker`和`markersize`参数来设置折线数据点的样式和大小。
例如,将折线数据点设置为圆圈样式,大小为10:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y, marker='o', markersize=10)
plt.show()
```
除了圆圈样式外,还有许多其他的样式可供选择,如方块、三角形、十字等,具体可参考官方文档。
阅读全文