我有一个2列的数据框。
df=pd.DataFrame({'values':arrays,'ii':lin_index})
我想按lin_index对值进行分组,并获取每组的平均值和每组的最常用值 我试试这个
bii=df.groupby('ii').median()
bii2=df.groupby('ii').agg(lambda x:x.value_counts().index[0])
bii3=df.groupby('ii')['values'].agg(pd.Series.mode)
我想知道bii2和bii3是否返回相同的值 然后我想将均值和最常用的值返回到原始数组
bs=np.zeros((np.unique(array).shape[0],1))
bs[bii.index.values]=bii.values
这看起来不错吗?
df看起来
values ii
0 1.0 10446786
1 1.0 11316289
2 1.0 16416704
3 1.0 12151686
4 1.0 30312736
... ...
93071038 3.0 28539525
93071039 3.0 19667948
93071040 3.0 22240849
93071041 3.0 22212513
93071042 3.0 41641943
[93071043 rows x 2 columns]
答案 0 :(得分:0)
类似这样的东西:
# get the mean
df.groupby(['ii']).mean()
# get the most frequent
df.groupby(['ii']).agg(pd.Series.mode)
您的问题似乎与 GroupBy pandas DataFrame and select most common value
此链接可能也很有用https://pandas.pydata.org/pandas-docs/stable/reference/frame.html#computations-descriptive-stats