get absolute values of the column
np.absolute(df[‘col’]
transform an array back after it had been log transformed
np.exp(arr)
change the formatting of np arrays to 2 digits
np.set_printoptions(formatter={‘float’: lambda x: “{0:0.2f}”.format(x)})
remove formatting of display
np.set_printoptions(formatter=None)