Python pandas:计算所有列的统计范围。

时间:2018-09-13 13:55:35

标签: pandas

使用python熊猫,我有一个带有int类型列的数据框。我需要计算所有列的统计范围。我能够计算每列的最小值和最大值,但无法计算出所有列的范围

1 个答案:

答案 0 :(得分:1)

您可以选中describe

df.describe(include='int64')
Out[10]: 
            cost      value
count   2.000000   2.000000
mean   20.500000  25.000000
std     7.778175   7.071068
min    15.000000  20.000000
25%    17.750000  22.500000
50%    20.500000  25.000000
75%    23.250000  27.500000
max    26.000000  30.000000