我正在研究一个问题,即将数据分组到数据框中并找出均值。
o / p值的格式为9.586945e + 05,但我需要实际的浮点值而不是电子符号。
这是查询和预期的o / p
master_frame.groupby(['funding_round_type'])['raised_amount_usd'].mean()
funding_round_type
angel 9.586945e+05
convertible_note 1.453439e+06
Name: raised_amount_usd, dtype: float64
我知道format可以删除e并获取实际的float值。我只想知道是否可以通过某种方式格式化查询本身中的值,以使o / p已经格式化。
master_frame.groupby(['funding_round_type'])['raised_amount_usd'].mean()