pandas round float to 2 decimals code example
Example 1: pandas round column
In [661]: df.round({'Y': 2, 'X': 2})
Out[661]:
Y X id WP_NER
0 35.97 -2.73 1 WP_01
1 35.59 -2.90 2 WP_02
2 35.33 -3.39 3 WP_03
3 35.39 -3.93 4 WP_04
4 35.58 -3.94 5 WP_05
5 35.52 -3.41 6 WP_06
6 35.76 -3.08 7 WP_07
In [662]: cols = ['Y', 'X']
In [663]: df[cols] = df[cols].round(2)
Example 2: pandas dataframe print decimal places
pd.set_option('precision', 4)
print(df.to_latex(index=False))
Example 3: pandas round
df.round(n)
Example 4: pandas round floats
df_new.round(1)