matplotlib文件绘图绘图
时间: 2023-11-17 12:02:23 浏览: 89
Matplotlib 绘图
Matplotlib是一个Python 2D绘图库,可以生成各种硬拷贝格式和跨平台交互式环境的出版物质量图形。它可以用于绘制线图、散点图、条形图、误差线、气泡图、等高线图、灰度图、轮廓线、三维图等多种图形。在Matplotlib中,可以使用pyplot模块的plot()函数进行绘图,也可以使用subplot()函数绘制多个子图。
以下是绘制单个图形的示例代码:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
```
以下是绘制多个子图的示例代码:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]
y2 = [1, 3, 5, 7, 9]
plt.subplot(2, 1, 1)
plt.plot(x, y1)
plt.subplot(2, 1, 2)
plt.plot(x, y2)
plt.show()
```
阅读全文