用matplotlib画一个之字形图
时间: 2023-10-06 17:07:03 浏览: 84
matplotlib画特殊的图形
5星 · 资源好评率100%
以下是一个绘制之字形图的示例代码:
```python
import matplotlib.pyplot as plt
# 设置 x 和 y 坐标
x = [0, 1, 1, 2, 2, 3]
y = [0, 0, 1, 1, 0, 0]
# 绘制之字形图
plt.plot(x, y, color='blue', linewidth=2)
# 设置图形属性
plt.title('The Zigzag Plot')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
plt.grid(True)
# 显示图形
plt.show()
```
上述代码中,我们首先设置了 x 和 y 坐标,然后调用 `plt.plot()` 函数绘制了一条之字形的线条。接着,我们设置了图形的标题、坐标轴标签和网格线,并最后调用 `plt.show()` 函数显示了图形。
阅读全文