简体   繁体   English

熊猫非常简单来自分组依据的总大小的百分比

[英]Pandas Very Simple Percent of total size from Group by

I'm having trouble for a seemingly incredibly easy operation. 我在看似非常简单的操作上遇到了麻烦。 What is the most succint way to just get a percent of total from a group by operation such as df.groupby['col1'].size() . 通过诸如df.groupby['col1'].size()类的操作df.groupby['col1'].size()组中获取百分比的最简洁的方法是什么? My DF after grouping looks like this and I just want a percent of total. 分组后我的DF看起来像这样,我只想占总数的百分之一。 I remember using a variation of this statement in the past but cannot get this to work now: percent = totals.div(totals.sum(1), axis=0) 我记得以前使用过此语句的变体,但现在无法percent = totals.div(totals.sum(1), axis=0)起作用: percent = totals.div(totals.sum(1), axis=0)

Original DF: 原始DF:

       A   B   C
    0  77   3  98
    1  77  52  99
    2  77  58  61
    3  77   3  93
    4  77  31  99
    5  77  53  51
    6  77   2   9
    7  72  25  78
    8  34  41  34
    9  44  95  27

Result: 结果:

df1.groupby('A').size() / df1.groupby('A').size().sum()

    A
    34    0.1
    44    0.1
    72    0.1
    77    0.7

Here is what I came up with so far which seems pretty reasonable way to do this: 到目前为止,这是我想出的方法,这似乎很合理:

df.groupby('col1').size().apply(lambda x: float(x) / df.groupby('col1').size().sum()*100)

I don't know if I'm missing something, but looks like you could do something like this: 我不知道我是否缺少任何东西,但是看起来您可以执行以下操作:

df.groupby('A').size() * 100 / len(df)

or 要么

df.groupby('A').size() * 100 / df.shape[0]

通过使用以下df.groupby('col1').size().apply(lambda x: float(x) / df.groupby('col1').size().sum()*100)在形状为(3e6,59)的DF上获得良好的性能(3.73s): df.groupby('col1').size().apply(lambda x: float(x) / df.groupby('col1').size().sum()*100)

How about: 怎么样:

df = pd.DataFrame({'A': {0: 77, 1: 77, 2: 77, 3: 77, 4: 77, 5: 77, 6: 77, 7: 72, 8: 34, 9: None},
                   'B': {0: 3, 1: 52, 2: 58, 3: 3, 4: 31, 5: 53, 6: 2, 7: 25, 8: 41, 9: 95},
                   'C': {0: 98, 1: 99, 2: 61, 3: 93, 4: 99, 5: 51, 6: 9, 7: 78, 8: 34, 9: 27}})

>>> df.groupby('A').size().divide(sum(df['A'].notnull()))
A
34    0.111111
72    0.111111
77    0.777778
dtype: float64

>>> df
    A   B   C
0  77   3  98
1  77  52  99
2  77  58  61
3  77   3  93
4  77  31  99
5  77  53  51
6  77   2   9
7  72  25  78
8  34  41  34
9 NaN  95  27

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM