Min max scaler pada satu kolom

from sklearn.preprocessing import minmax_scale

df[['x','z']] = minmax_scale(df[['x','z']])
Ultimate Gohan