format decimals in python dataframe code example
Example 1: pandas decimal places
# (1) Round to specific decimal places – Single DataFrame column
df['DataFrame column'].round(decimals=number of decimal places needed)
# (2) Round up – Single DataFrame column
df['DataFrame column'].apply(np.ceil)
# (3) Round down – Single DataFrame column
df['DataFrame column'].apply(np.floor)
# (4) Round to specific decimals places – Entire DataFrame
df.round(decimals=number of decimal places needed)
Example 2: pandas format float decimal places
pd.options.display.float_format = '{:,.2f}'.format