使用matpolotlib库绘图
时间: 2023-06-28 21:11:26 浏览: 83
Matplotlib 绘图
好的,以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
# 绘制折线图
plt.plot(x, y)
# 添加标题和标签
plt.title("Example Plot")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
# 显示图形
plt.show()
```
这个例子生成了一组数据 `x` 和 `y`,然后使用 `plt.plot()` 函数绘制了折线图。接下来,使用 `plt.title()`、`plt.xlabel()` 和 `plt.ylabel()` 函数添加了图形标题和坐标轴标签。最后,使用 `plt.show()` 函数显示了图形。
你可以根据自己的需要调整数据、样式和其他参数,进行更复杂的绘图。
阅读全文