I have this issue when trying to use sklearn.preprocessing.MinMaxScaler
on a large array and obtaining the scaling parameters to do "redo" the normalization after handling the array for a while.
The issue I have is that after doing my MinMaxScaler.fit_transform(data)
, where data
is a numpy array with shape (8,412719), the scaling parameters obtained with MinMaxScaler.scale_
is just a list with length 412719.
How do I obtain an array with scaling parameters instead? I'm missing 7 columns worth of scaling parameters if I've not misunderstood something.