python折线图点描黑
时间: 2023-09-14 13:11:56 浏览: 158
要使 Python 折线图的点描黑,您可以使用 `matplotlib` 库中的 `plot()` 函数,并设置 `marker` 和 `markerfacecolor` 参数。以下是一个示例代码:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 画图
plt.plot(x, y, marker='o', markerfacecolor='black')
# 图形属性
plt.xlabel('X轴')
plt.ylabel('Y轴')
plt.title('Python 折线图')
# 显示图形
plt.show()
```
在这个示例中,`marker` 参数设置为 `'o'`,表示使用圆点作为点的标志。`markerfacecolor` 参数设置为 `'black'`,表示将点填充为黑色。您可以根据需要更改这些参数来获得所需的效果。
阅读全文