-1

df.describe().loc[['mean','std','25%','50%','75%']]

如何向 describe() 函数的默认输出属性添加其他属性,例如百分位 10% 和 90%?

4

1 回答 1

0

percentiles使用参数DataFrame.describe

percentiles : 类似数字的列表,可选
要包含在输出中的百分位数。全部应介于 0 和 1 之间。默认值为 [.25, .5, .75],它返回第 25、第 50 和第 75 个百分位数。

df.describe(percentiles=[.1, .25, .5, .75, .9])
于 2019-11-25T13:51:21.303 回答