熊猫将科学数字转换为普通数字(浮点数)

时间:2019-10-24 12:56:48

标签: python-3.x pandas dataframe

我有一个从csv文件读取的数据框,该文件中的某些列中包含数字,这些数字的格式设置为科学计数法(如下图所示)

enter image description here

问题是,如果我检查列的dtype已经将其格式化为float64,那么该如何像其他数字格式(如675537540.2)那样更改它们?

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您需要使用pd.set_option更改浮动内容的显示格式:

pd.set_option('display.float_format', lambda x: '%.2f'.format(x))