为什么`describe`函数显示浮动使用科学记数法?

时间:2018-03-15 00:38:46

标签: python pandas

.csv文件中的数据如下所示:

enter image description here

但是当我使用函数describe时,它会以科学记数法显示数字?

如何在describe函数中格式化它们?

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以尝试按照类似issue

中提到的内容进行操作
pd.set_option('float_format',lambda x: "%.6f" % x)

来自文件:

display.float_format : callable
    The callable should accept a floating point number and return
    a string with the desired format of the number. This is used
    in some places like SeriesFormatter.
    See formats.format.EngFormatter for an example.
    [default: None] [currently: None]