用python表示饼图
时间: 2024-01-26 08:43:50 浏览: 66
听说你不会用python画饼图?赶紧进来看一下刚出炉的教程.pdf
好的,下面是用 Python 绘制饼图的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
# 绘制饼图
fig, ax = plt.subplots()
ax.pie(sizes, labels=labels, autopct='%1.1f%%', shadow=True, startangle=90)
ax.axis('equal')
plt.show()
```
这段代码使用了 matplotlib 库来绘制饼图。labels 和 sizes 分别表示饼图的标签和对应的数值,ax.pie() 方法将它们绘制为饼图,autopct 参数用于显示百分比,shadow 和 startangle 分别用于设置阴影和起始角度。最后一行 plt.show() 显示图像。
阅读全文