以下為大家分享一篇pandas取得groupby分組裡最大值所在的行方法,具有很好的參考價值,希望對大家有幫助。一起來看看吧
pandas取得groupby分組裡最大值所在的行方法
如下面這個DataFrame,按照Mt分組,取出Count最大的那行
import pandas as pd
df = pd.DataFrame({'Sp':['a','b','c','d','e','f'], 'Mt':['s1', 's1', 's2','s2','s2','s3'], 'Value':[1,2,3,4,5,6], 'Count':[3,2,5,10,10,6]})
df
登入後複製
| | | | |
---|
Count | Mt | Sp | Value | |
0 | #3 | s1 | a | 1 |
#1 | 2 | s1 | b | 2 |
2 | 5 | s2##c | 3 | |
310 | s2 | d | 4 | |
410 | s2 | e | ##5 | | ##5
6
s3f6
#方法1:在分組中篩選出Count最大的行
df.groupby('Mt').apply(lambda t: t[t.Count==t.Count.max()]) 登入後複製
|
| | | | |
---|
|
| |
| #Count Mt | Sp
| #Value
---|
Mt | | | | | |
| | | | | s1 | 0
---|
3 | #s1 | a | 1 | | s2
3 | 10 | s2 | d##4 | | 4 |
10
s2
e5
s3
5
6
s3
f
#6
| | 方法2:用transform取得原始dataframe的index,然後過濾出需要的行 | | #print df.groupby(['Mt'])['Count'].agg(max)
idx=df.groupby(['Mt'])['Count'].transform(max)
print idx
idx1 = idx == df['Count']
print idx1
df[idx1] 登入後複製 |
##Mt
s1 3
s2 10
s3 6
Name: Count, dtype: int64
0 3
1 3
2 10
3 10
4 10
5 6
dtype: int64
0 True
1 False
2 False
3 True
4 True
5 True
dtype: bool
登入後複製
| | | | | Count
---|
Mt##Sp | Value | | | 0 |
3s1 | ##a | 1 | | 3 | 10
---|
s2##d | 4 | | 4 | 10 |
s2
e
#5
5
6
s3
f
6
#上面的方法都有個問題是3、4行的值都是最大值,這樣回傳了多行,如果只要回傳一行呢?
方法3:idmax(舊版pandas是argmax)
| | #idx = df.groupby('Mt')['Count'].idxmax()
print idx 登入後複製 | | df.iloc[idx]
Mt
s1 0
s2 3
s3 5
Name: Count, dtype: int64 登入後複製 |
---|
| | | Count | ##Mt | Sp
---|
Value | | | 0 | 3 | s1
a | 1 | | 3 | 10 | #s2
#d
##4
5
6
s3f##6
| | | df.iloc[df.groupby(['Mt']).apply(lambda x: x['Count'].idxmax())]
登入後複製
| |
| | | #Mt | Sp | Value
---|
| | #0 | 3##s1 | a |
1 | 3 | 10 | s2 | ##d##4 |
---|
5
6
s3
#f
6
##def using_apply(df):
return (df.groupby('Mt').apply(lambda subf: subf['Value'][subf['Count'].idxmax()]))
def using_idxmax_loc(df):
idx = df.groupby('Mt')['Count'].idxmax()
return df.loc[idx, ['Mt', 'Value']]
print using_apply(df)
using_idxmax_loc(df)
登入後複製
| Mt
s1 1
s2 4
s3 6
dtype: int64
登入後複製
| |
---|
| | |
---|
| | |
##MtValue | | |
#0
s1
#1
3
s2
4
#5##s36
| | | 方法4:先排好序,然後每組取第一個 | |
#df.sort('Count', ascending=False).groupby('Mt', as_index=False).first()
登入後複製
|
|
|
|
| #Mt
Count |
|
|
| ##Mt | Count
Sp | Value |
|
| 0 | s1
##3 #a1
1
s210
##d4
2s3
6######f######6################################### ###那問題又來了,如果不是要取出最大值所在的行,例如要中間值所在的那行呢? ######思路還是類似,可能具體寫法上要做一些修改,例如方法1和2要修改max演算法,方法3要自己實作一個回index的方法。不管怎樣,groupby之後,每個分組都是一個dataframe。 ######相關推薦:############pandas dataframe實作行列選擇與切片操作############Python 資料處理庫pandas 入門### #####################以上是pandas取得groupby分組裡最大值所在的行方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
-
2019-04-16 16:04:28
-
2020-09-15 11:26:00
-
2020-09-10 14:26:14
-
2020-09-08 11:06:15
-
2020-09-09 09:46:36
-
2020-10-12 14:51:04
-
2020-09-10 14:40:02
-
2019-04-24 16:20:55
-
2020-10-13 11:40:03
-
2019-04-15 14:06:21