column standardization pandas

Solutions on MaxInterview for column standardization pandas by the best coders in the world

showing results for - "column standardization pandas"
Juan Martín
29 Mar 2016
1columns = ['A', 'B','C'] #specify the column names
2for col in columns:
3  df[col] = (df[col] - df[col].mean())/df[col].std() 
4