pyspark.pandas.groupby.GroupBy.max¶
-
GroupBy。
馬克斯
( numeric_only:可選(bool]=假 )→FrameLike¶ -
計算最大集團的價值觀。
- 參數
-
- numeric_only bool,默認的錯誤
-
隻包括浮動,int,布爾列。如果沒有,將嚐試使用一切,然後隻使用數字數據。
例子
> > >df=ps。DataFrame({“一個”:(1,2,1,2),“B”:(真正的,假,假,真正的),…“C”:(3,4,3,4),“D”:(“一個”,“b”,“b”,“一個”]})
> > >df。groupby(“一個”)。馬克斯()。sort_index()B C D一個1真正的3 b2對4 b
隻包括浮動,int,當設置numeric_only真布爾列。
> > >df。groupby(“一個”)。馬克斯(numeric_only=真正的)。sort_index()B C一個1對32對4