python绘制饼图代码
时间: 2023-10-09 08:16:29 浏览: 189
绘图 Python matplotlib简介1
下面是一个使用Matplotlib库绘制饼图的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
colors = ['red', 'blue', 'green', 'yellow']
# 绘制饼图
plt.pie(sizes, labels=labels, colors=colors, autopct='%1.1f%%')
plt.axis('equal') # 使饼图为正圆形
# 添加标题
plt.title('Pie Chart')
# 显示图形
plt.show()
```
在上面的代码中,我们使用了`plt.pie()`函数来绘制饼图。其中,`labels`是饼图中各个部分的标签,`sizes`是各个部分的大小,`colors`是各个部分的颜色。`autopct='%1.1f%%'`表示将百分比显示到小数点后一位。
最后调用`plt.axis('equal')`使饼图为正圆形,然后使用`plt.title()`添加标题,最后调用`plt.show()`显示图形。
你可以根据自己的数据进行相应的修改和调整。
阅读全文