1. 引言
亲们,还在为数据报告里的饼图头疼吗?别怕,Matplotlib来救场啦!它不只是个绘图工具,简直是数据界的魔术师,让你的饼图既专业又有趣。跟我学几招,保证让你的观众边吃边看,爱不释眼!快来解锁你的数据烘焙新技能吧!饼状图用来显示一个数据系列,具体来说,饼状图显示一个数据系列中各项目总和的百分比。
2. 导包
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline
plt.rcParams['font.sans-serif'] = "SimHei"
plt.rcParams["axes.unicode_minus"] = False
%config Inlinebackend.figure_format = "svg"
3. 饼图
x = [10, 20, 30, 40]
plt.pie(x, autopct="%.2f%%")
plt.show()
4. Pandas获取Excel数据
df = pd.read_excel("09_pie.xlsx", sheet_name="pie1")
df
| 省份 | 销量 |
---|
0 | 广东 | 12932 |
---|
1 | 山东 | 9622 |
---|
2 | 湖北 | 9505 |
---|
3 | 江苏 | 7898 |
---|
4 | 浙江 | 7675 |
---|
5 | 河北 | 7315 |
---|
6 | 广西 | 5164 |
---|
7 | 上海 | 5132 |
---|
8 | 北京 | 4885 |
---|
9 | 四川 | 4468 |
---|
citys, values = df["省份"], df["销量"]
plt.figure(figsize=(4, 4))
plt.pie(x=values,
autopct="%.1f%%",
pctdistance=0.8,
labels=citys,
labeldistance=1.3,
textprops={"fontsize":12, "color":"blue"},
explode=[0.1, 0, 0, 0, 0, 0, 0, 0, 0, 0])
plt.show()
5. 单个圆环:甜甜圈
plt.figure(figsize=(4, 4))
plt.pie(x=values,
autopct="%.1f%%",
pctdistance=0.8,
labels=citys,
textprops={"fontsize":10, "color":"k"},
wedgeprops={"width":0.4, "edgecolor":"w"}
)
plt.show()
6. 多个圆环
df1 = pd.read_excel("09_pie.xlsx", sheet_name="pie1")
df2 = pd.read_excel("09_pie.xlsx", sheet_name="pie2")
display(df1,df2)
| 省份 | 销量 |
---|
0 | 广东 | 12932 |
---|
1 | 山东 | 9622 |
---|
2 | 湖北 | 9505 |
---|
3 | 江苏 | 7898 |
---|
4 | 浙江 | 7675 |
---|
5 | 河北 | 7315 |
---|
6 | 广西 | 5164 |
---|
7 | 上海 | 5132 |
---|
8 | 北京 | 4885 |
---|
9 | 四川 | 4468 |
---|
| 省份 | 销量 |
---|
0 | 广东 | 21600 |
---|
1 | 山东 | 7800 |
---|
2 | 湖北 | 9505 |
---|
3 | 江苏 | 7898 |
---|
4 | 浙江 | 12240 |
---|
5 | 河北 | 11760 |
---|
6 | 广西 | 5164 |
---|
7 | 上海 | 33776 |
---|
citys1, values1 = df1["省份"], df1["销量"]
citys2, values2 = df2["省份"], df2["销量"]
plt.figure(figsize=(6, 6))
plt.pie(x=values1,
autopct="%.1f%%",
pctdistance=0.8,
labels=citys1,
textprops={"fontsize":10, "color":"k"},
wedgeprops={"width":0.4, "edgecolor":"w"}
)
plt.pie(
x=values2,
autopct="%.1f%%",
pctdistance=0.8,
textprops={"fontsize":8, "color":"k"},
radius=0.59
)
plt.legend(citys1, fontsize=6, loc="upper left")
plt.show()