.csv文件中的数据如下所示:
但是,当我使用功能describe
时,它是否以科学计数形式显示数字?
如何在describe
函数中格式化它们?
最佳答案
您可以尝试在类似的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]
关于python - 为什么“描述”功能的显示使用科学计数法 float ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49289812/