Get z-score for a column and add to Datafame
Python
1| from scipy import stats 2| df['z_score'] = stats.zscore(df['column_name'])
142
127
122
115