如图所示,'标志的类型'列是int64。但是,当我使用flags.describe()时,dtype是float64。我想知道它为什么以及如何获得describe()的正常结果?
答案 0 :(得分:2)
flags.describe()
是一个系列。所有系列都有一个dtype。由于此系列包含标准偏差和平均值(通常为浮点数)等值,因此flags.describe()
dytpe是浮点dtype。因此,即使flag.dtype
为int64
,flags.describe().dtype
为float64
。