matplotlib.pyplot用法
时间: 2023-07-17 17:56:41 浏览: 130
python matplotlib.pyplot.plot()参数用法
matplotlib.pyplot是Python中常用的绘图库,可以用来绘制各种类型的图表,包括折线图、散点图、柱状图、饼图等。以下是一些matplotlib.pyplot的基本用法:
1. 导入库
```python
import matplotlib.pyplot as plt
```
2. 绘制折线图
```python
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
plt.plot(x, y)
plt.show()
```
3. 绘制散点图
```python
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
plt.scatter(x, y)
plt.show()
```
4. 绘制柱状图
```python
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
plt.bar(x, y)
plt.show()
```
5. 绘制饼图
```python
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
plt.pie(sizes, labels=labels)
plt.show()
```
这只是matplotlib.pyplot的一部分用法,还有很多其他的图表类型和参数可以使用。更多用法可以参考matplotlib.pyplot的官方文档:https://matplotlib.org/stable/api/pyplot_summary.html
阅读全文