i have problems rounding Decimals() inside a Pandas Dataframe. The round() method does not work and using quantize() neither. I\'ve search
Decimals()
round()
quantize()
To round your decimal to 2 significant figures for example:
round(df['yourSeries'].astype('float'), 2)
Or if you just want an int:
round(df['yourSeries'].astype('float'))