numpy.float64 和float
用numpy.float64,在做groupby的时候,其他str字段不会连到一起,组合成一大串
agg = sensis.groupby(by=['bu'], as_index=False).sum()
用float来groupby 的话,其他列的字段多个合并成一连串
用numpy.float64,在做groupby的时候,其他str字段不会连到一起,组合成一大串
agg = sensis.groupby(by=['bu'], as_index=False).sum()
用float来groupby 的话,其他列的字段多个合并成一连串
