plt.plot画圆圈
时间: 2023-11-01 14:58:53 浏览: 108
键盘组合键用法-python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
要在Matplotlib中使用plt.plot()来画圆圈,可以通过设置marker参数为'o'来实现。下面是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 创建数据
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
# 绘制散点图
plt.plot(x, y, marker='o')
# 显示图形
plt.show()
```
阅读全文