怎么用 python 绘制一个饼状图
时间: 2023-08-02 08:41:13 浏览: 66
制作饼状图
要使用 Python 绘制饼状图,可以使用 matplotlib 库。下面是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
# 绘制饼状图
plt.pie(sizes, labels=labels, autopct='%1.1f%%')
# 显示图形
plt.show()
```
这个示例代码中,首先定义了饼状图的数据,包括标签和数值。然后使用 `plt.pie()` 函数绘制饼状图,其中 `labels` 参数是标签,`sizes` 参数是数值,`autopct` 参数是自动计算百分比并显示在图上。最后使用 `plt.show()` 函数显示图形。
阅读全文