plt.plot加点
时间: 2023-11-16 19:01:06 浏览: 94
matplotlib 曲线图 和 折线图 plt.plot()实例
5星 · 资源好评率100%
可以使用plt.scatter函数来给plt.plot的线条加点,示例代码如下:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.scatter(x, y, color='red')
plt.show()
```
这段代码会在plt.plot的线条上加上红色的点。其中,plt.scatter函数的前两个参数分别是点的x坐标和y坐标,color参数用来设置点的颜色。
阅读全文