作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在泰坦尼克号数据集中,我需要创建一个图表来显示所有舱位幸存乘客的百分比。它还应该有三个饼图。第 1 类存活和未存活,第 2 类存活和未存活,第 3 类。
怎样才能做到这一点?我已经尝试过这种类型的代码,但它产生了错误的值。
import pandas as pd
import seaborn as sns # for dataset
df_titanic = sns.load_dataset('titanic')
survived pclass sex age sibsp parch fare embarked class who adult_male deck embark_town alive alone
0 0 3 male 22.0 1 0 7.2500 S Third man True NaN Southampton no False
1 1 1 female 38.0 1 0 71.2833 C First woman False C Cherbourg yes False
2 1 3 female 26.0 0 0 7.9250 S Third woman False NaN Southampton yes True
c1s = len(df_titanic[(df_titanic.pclass==1) & (df_titanic.survived==1)].value_counts())
c2ns = len(df_titanic[(df_titanic.pclass==1) & (df_titanic.survived==0)].value_counts())
此代码产生真实值,但我需要在 3 个饼图中显示
df_titanic.groupby(['pclass' ,'survived']).size().plot(kind='pie', autopct='%.2f')
类:1,2,3 幸存:0,1
最佳答案
pandas.crosstab
用于塑造数据框
pandas.DataFrame.pivot
和 pandas.DataFrame.pivot_table
是 reshape 数据以进行绘图的其他选项。pandas.DataFrame.plot
绘图使用 kind='pie'
和 subplots=True
。python 3.8.12
、pandas 1.3.4
、matplotlib 3.4.3
中测试import seaborn as sns # for titanic data only
import pandas as pd
from matplotlib.patches import Patch # to create the colored squares for the legend
# load the dataframe
df = sns.load_dataset('titanic')
# reshaping the dataframe is the most important step
ct = pd.crosstab(df.survived, df.pclass)
# display(ct)
pclass 1 2 3
survived
0 80 97 372
1 136 87 119
# plot and add labels
colors = ['tab:blue', 'tab:orange'] # specify the colors so they can be used in the legend
labels = ["not survived", "survived"] # used for the legend
axes = ct.plot(kind='pie', autopct='%.1f%%', subplots=True, figsize=(12, 5),
legend=False, labels=['', ''], colors=colors)
# flatten the array of axes
axes = axes.flat
# extract the figure object
fig = axes[0].get_figure()
# rotate the pclass label
for ax in axes:
yl = ax.get_ylabel()
ax.set_ylabel(yl, rotation=0, fontsize=12)
# create the legend
legend_elements = [Patch(fc=c, label=l) for c, l in zip(colors, labels)]
fig.legend(handles=legend_elements, loc=9, fontsize=12, ncol=2, borderaxespad=0, bbox_to_anchor=(0., 0.8, 1, .102), frameon=False)
fig.tight_layout()
fig.suptitle('pclass survival', fontsize=15)
axes = ct.plot(kind='pie', autopct='%.1f%%', subplots=True, figsize=(12, 5), labels=["not survived", "survived"])
关于python - 如何为每组 pandas 列创建一个子图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69865648/
我是一名优秀的程序员,十分优秀!