如何舍入所有列Pandas数据框?

时间:2018-12-16 11:59:07

标签: python pandas

我的代码: mean= all_data.groupby(['Id'])[features].agg('mean').reset_index()

现在,列的输出如下:

0          0.000000
1        362.000000
2          0.000000
3          0.000000
4         60.093750
5          0.000000

我想将此数字四舍五入为两位小数,例如:

0          0.00
1        362.00
2          0.00
3          0.00
4         60.09
5          0.00

1 个答案:

答案 0 :(得分:1)

在最新的熊猫版本中,您可以df.round(2)