最佳答案
我无法在 pandas 得到某一列的平均值或中位数。A 有一个 dataframe。下面我尝试的两种方法都没有给出列weight
的平均值
>>> allDF
ID birthyear weight
0 619040 1962 0.1231231
1 600161 1963 0.981742
2 25602033 1963 1.3123124
3 624870 1987 0.94212
下面返回多个值,而不是一个:
allDF[['weight']].mean(axis=1)
这个也一样:
allDF.groupby('weight').mean()