i want to round the number showing in my table
it looks now like:

i want it looks like:

How can i get that? use pandas or numpy and as simple as possible. Thanks!
i want to round the number showing in my table
it looks now like:

i want it looks like:

How can i get that? use pandas or numpy and as simple as possible. Thanks!
 
    
    In pandas , we can use pandas.DataFrame.round. See example below ( from pandas documentation )
data frame : df
    dogs  cats
0  0.21  0.32
1  0.01  0.67
2  0.66  0.03
3  0.21  0.18
Do round on df like below
df.round(1)
Output:
    dogs  cats
0   0.2   0.3
1   0.0   0.7
2   0.7   0.0
3   0.2   0.2
We can even specify the fields need to round, see link for more details : pandas.DataFrame.round
Or We can use default python round in a loop, as below
>>> round(5.76543, 2)
5.77
