python scatter 怎么画空心的点
时间: 2023-09-29 19:08:06 浏览: 177
Python matplotlib通过plt.scatter画空心圆标记出特定的点方法
5星 · 资源好评率100%
在使用 Python 中的 Matplotlib 库画散点图时,可以通过设置 `marker` 参数来改变点的形状和样式。要画空心的点,可以将 `marker` 参数设置为空心圆形 `'o'` 并设置 `edgecolor` 参数为所需颜色。以下是一个示例代码:
``` python
import matplotlib.pyplot as plt
# 创建数据
x = [1, 2, 3, 4, 5]
y = [10, 20, 30, 40, 50]
# 画散点图
plt.scatter(x, y, marker='o', facecolors='none', edgecolors='red')
# 显示图像
plt.show()
```
在这个示例中,我们使用 `scatter()` 函数画出了散点图,并将 `marker` 参数设置为空心圆形 `'o'`,同时将 `facecolors` 参数设为 `'none'` 表示不填充颜色,将 `edgecolors` 参数设置为所需颜色 `'red'` 表示边框颜色为红色。最后,我们使用 `show()` 函数显示图像。
阅读全文