Min Max Scaller na jednej kolumnie

from sklearn.preprocessing import minmax_scale

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