用Python绘制图像的函数
时间: 2023-12-10 15:38:58 浏览: 80
Python中有许多绘制图像的函数,其中最常用的是matplotlib库。以下是一些基本的绘图函数:
1. plt.plot(x, y):绘制折线图
2. plt.scatter(x, y):绘制散点图
3. plt.bar(x, height):绘制柱状图
4. plt.hist(x):绘制直方图
5. plt.pie(x):绘制饼图
这些函数都需要导入matplotlib库,并使用plt.show()函数显示图像。例如:
```python
import matplotlib.pyplot as plt
# 绘制折线图
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
# 绘制散点图
plt.scatter(x, y)
plt.show()
# 绘制柱状图
height = [3, 6, 9, 12, 15]
plt.bar(x, height)
plt.show()
# 绘制直方图
x = [1, 1, 2, 2, 2, 3, 3, 4, 5]
plt.hist(x)
plt.show()
# 绘制饼图
x = [30, 40, 10, 20]
plt.pie(x)
plt.show()
```
阅读全文