gpt4 book ai didi

python - 如何在 pandas 系列中找到 groupby 函数的比率

转载 作者:太空宇宙 更新时间:2023-11-04 00:15:54 26 4
gpt4 key购买 nike

我使用 groupby 按职业和性别对数据集进行分组。现在我想找出每个职业的男女比例。我想不出如何继续。

enter image description here

最佳答案

这是使用 pandas.pivot_table 的一种方法和矢量化的 Pandas 计算。请注意,此方法无需执行单独的 groupby

df = pd.DataFrame([['A', 'F'], ['A', 'F'], ['A', 'M'], ['B', 'M'], ['B', 'M'], ['B', 'F'],
['C', 'M'], ['C', 'M'], ['D', 'F']], columns=['Occupation', 'Gender'])

# pivot input dataframe
res = df.pivot_table(index='Occupation', columns='Gender', aggfunc='size', fill_value=0)

# calculate ratios
sums = res[['F', 'M']].sum(axis=1)
res['FemaleRatio'] = res['F'] / sums
res['MaleRatio'] = res['M'] / sums

print(res)

Gender F M FemaleRatio MaleRatio
Occupation
A 2 1 0.666667 0.333333
B 1 2 0.333333 0.666667
C 0 2 0.000000 1.000000
D 1 0 1.000000 0.000000

关于python - 如何在 pandas 系列中找到 groupby 函数的比率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51010770/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com