python3绘制饼图
时间: 2023-10-10 19:11:55 浏览: 78
绘制饼状图
使用Python 3可以使用matplotlib库来绘制饼图,具体步骤如下:
1. 导入所需要的库
```python
import matplotlib.pyplot as plt
```
2. 准备数据
```python
labels = ['A', 'B', 'C', 'D'] # 饼图中每一块的标签
sizes = [15, 30, 45, 10] # 饼图中每一块的大小
```
3. 绘制饼图
```python
plt.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=90)
plt.axis('equal') # 保证饼图为正圆形
plt.show()
```
其中,`autopct='%1.1f%%'`用于设置数字标签的格式,`startangle=90`用于设置饼图的起始角度。
完整代码如下:
```python
import matplotlib.pyplot as plt
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
plt.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=90)
plt.axis('equal')
plt.show()
```
阅读全文