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()
Since pandas has no quantize method i used the following to solve the problem:
out.applymap(lambda x: x.quantize(dc.Decimal('1.00')))