# mean and standard deviation normalisation normalized_df=(df-df.mean())/df.std() # min max scaling normalized_df=(df-df.min())/(df.max()-df.min())