Min Max Scaler en una columna

from sklearn.preprocessing import minmax_scale

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