plt.scatter
时间: 2023-07-09 09:17:52 浏览: 66
Python matplotlib通过plt.scatter画空心圆标记出特定的点方法
plt.scatter 是 Matplotlib 库中用于绘制散点图的函数。它可以接收 x, y 坐标数据,并将它们以散点的形式在图表中显示出来。例如,如果要绘制坐标为 (1,2), (2,4), (3,6), (4,8) 的四个点,可以使用如下代码:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [2, 4, 6, 8]
plt.scatter(x, y)
plt.show()
```
这将会在图表上绘制出四个点,并将它们连接起来形成一条直线。
阅读全文