Normizar a média e a DST pandas todas as colunas
normalized_df=(df-df.mean())/df.std()
Excited Eel
normalized_df=(df-df.mean())/df.std()