You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a column in a pandas table that I set astype(float32) and then set the precision using
options = config.load_options()
options = {'floatprecision': 2}
config.apply_options(options, self.table)
before displaying. But when it displayed, it showed more than 2 decimal places
When I changed the column type to simply astype(float) then it worked as expected.
It seems to me that both types should be recognized and formatted properly
The text was updated successfully, but these errors were encountered:
I had a column in a pandas table that I set astype(float32) and then set the precision using
options = config.load_options()
options = {'floatprecision': 2}
config.apply_options(options, self.table)
before displaying. But when it displayed, it showed more than 2 decimal places
When I changed the column type to simply astype(float) then it worked as expected.
It seems to me that both types should be recognized and formatted properly
The text was updated successfully, but these errors were encountered: