简体   繁体   English

通过另一列 pandas 找到列组的最大值

[英]find the max of column group by another column pandas

I have a dataframe with 2 columns:我有一个包含 2 列的数据框:

count percent  grpno.
0          14.78       1
1           0.00       2
2           8.80       3
3           9.60       4
4          55.90       4
5           0.00       2
6           0.00       6
7           0.00       5
8           6.90       1
9          59.00       4

I need to get the max of column 'count percent ' and group by column 'grpno.'.我需要获取“count percent”列的最大值并按“grpno”列分组。 Though I tried doing the same by虽然我尝试做同样的事情

geostat.groupby(['grpno.'], sort=False)['count percent'].max()

I get the output to be我得到的输出是

grpno.
1    14.78
2     0.00
3     8.80
4    59.00
6     0.00
5     0.00
Name: count percent, dtype: float64

But I need output to be a dataframe that has the column name modified as 'MaxOfcount percent' and 'grpno.'但我需要输出是一个将列名修改为“MaxOfcount percent”和“grpno”的数据框。 Can anyone help on this?有人可以帮忙吗? Thanks谢谢

res = df.groupby('grpno.')['count percent'].max().reset_index()
res.columns = ['grpno.', 'MaxOfcount percent']

   grpno.  MaxOfcount percent
0       1               14.78
1       2                0.00
2       3                8.80
3       4               59.00
4       5                0.00
5       6                0.00

You could also do it in one line:您也可以在一行中完成:

res = df.groupby('grpno.', as_index=False)['count percent'].max().rename(columns={'count percent': 'MaxOfcount percent'})

You could use groupby with argument as_index=False :您可以使用带有参数as_index=Falsegroupby

In [119]: df.groupby(['grpno.'], as_index=False)[['count percent']].max()
Out[119]: 
   grpno.  count percent
0       1    14.78
1       2     0.00
2       3     8.80
3       4    59.00
4       5     0.00
5       6     0.00

df1 = df.groupby(['grpno.'], as_index=False)[['count percent']].max()
df1.columns = df1.columns[:-1].tolist() + ['MaxOfcount percent']

In [130]: df1
Out[130]: 
   grpno.  MaxOfcount percent
0       1               14.78
1       2                0.00
2       3                8.80
3       4               59.00
4       5                0.00
5       6                0.00

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

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