df.describe()结果的类型 - python pandas

时间:2017-07-20 12:22:24

标签: python pandas

如图所示,'标志的类型'列是int64。但是,当我使用flags.describe()时,dtype是float64。我想知道它为什么以及如何获得describe()的正常结果?

enter image description here

1 个答案:

答案 0 :(得分:2)

flags.describe()是一个系列。所有系列都有一个dtype。由于此系列包含标准偏差和平均值(通常为浮点数)等值,因此flags.describe() dytpe是浮点dtype。因此,即使flag.dtypeint64flags.describe().dtypefloat64