# min-max normalization: df=(df-df.min())/(df.max()-df.min()) # or... # mean normalization: df=(df-df.mean())/df.std()