I am using code below to normalize columns but it tries to and starts with my label columns, is there anyway to only normalize certain columns?
x = df.values #returns a numpy array
min_max_scaler = preprocessing.MinMaxScaler()
x_scaled = min_max_scaler.fit_transform(x)
df = pd.DataFrame(x_scaled)
Thanks