df.describe().loc[['mean','std','25%','50%','75%']]
如何向 describe() 函数的默认输出属性添加其他属性,例如百分位 10% 和 90%?
df.describe().loc[['mean','std','25%','50%','75%']]
如何向 describe() 函数的默认输出属性添加其他属性,例如百分位 10% 和 90%?
percentiles
使用参数DataFrame.describe
:
percentiles : 类似数字的列表,可选
要包含在输出中的百分位数。全部应介于 0 和 1 之间。默认值为 [.25, .5, .75],它返回第 25、第 50 和第 75 个百分位数。
df.describe(percentiles=[.1, .25, .5, .75, .9])