如何在有 3 列数据的情况下在 python 中绘制 Pie_chart
How plot Pie_chart in python while having 3 columns of data
Charging
Number
Share
0-20%.
9.
15.50%
21-40%.
18.
31%.
41-60%.
4.
6.90%
61-80%.
9.
15.50%
81-100%
8.
13.80%
>100%
10.
17.30%
您可以使用 pyplot
中的 pie()
函数在 python 中绘制饼图。首先你需要安装 matplotlib
:
pip install matplotlib
然后您可以通过提供大小和标签来创建饼图:
import matplotlib.pyplot as plt
labels = 'Charging', 'Number', 'Share'
sizes = [20, 9, 15.5]
fig1, ax1 = plt.subplots()
ax1.pie(sizes, labels=labels, startangle=90)
ax1.axis('equal')
plt.show()
饼图文档:pyplot-pie
Charging | Number | Share |
---|---|---|
0-20%. | 9. | 15.50% |
21-40%. | 18. | 31%. |
41-60%. | 4. | 6.90% |
61-80%. | 9. | 15.50% |
81-100% | 8. | 13.80% |
>100% | 10. | 17.30% |
您可以使用 pyplot
中的 pie()
函数在 python 中绘制饼图。首先你需要安装 matplotlib
:
pip install matplotlib
然后您可以通过提供大小和标签来创建饼图:
import matplotlib.pyplot as plt
labels = 'Charging', 'Number', 'Share'
sizes = [20, 9, 15.5]
fig1, ax1 = plt.subplots()
ax1.pie(sizes, labels=labels, startangle=90)
ax1.axis('equal')
plt.show()
饼图文档:pyplot-pie