Pandas Groupby Mean Code Example

Snippet 1

  df.groupby(['A', 'B']).mean() 

Snippet 2

  In [57]: df.groupby(['cluster', 'org']).mean()
Out[57]:
               time
cluster org
1       a    438886
        c        23
2       d      9874
        h        34
3       w         6 

Copyright © Code Fetcher 2020

 

 

Leave a comment

Your email address will not be published. Required fields are marked *