Normaliser les pandas moyennes et std toutes les colonnes
normalized_df=(df-df.mean())/df.std()
Excited Eel
normalized_df=(df-df.mean())/df.std()