将科学记数法转换为int .describe大熊猫

时间:2020-05-14 14:08:35

标签: python-3.x pandas scientific-notation

当我运行熊猫随附的.describe()函数时,输出采用科学计数法。

是否也可以将其设为float

当我跑步时:

pd_routesdists['Total'].describe()

输出为:

Out[679]: 
count    3.628800e+06
mean     2.727373e+04
std      2.293868e+03
min      1.787700e+04
25%      2.578300e+04
50%      2.743500e+04
75%      2.896900e+04
max      3.363000e+04
Name: Total, dtype: float64

同时,我希望输出为:

出[679]:

count    3628800.oo
mean     27273.73
std      2293.86
min      17877.00
25%      25783.00
50%      27435.00
75%      28969.00
max      33630.00
Name: Total, dtype: float64

有可能吗?

0 个答案:

没有答案