in sklearn, if I want to transform the data to range(-1, 1), do you think it is better to use StandardScaler before using MinMaxScaler? to make the date more normal distributed?
Asked
Active
Viewed 134 times
0
user900476
- 423
StandardScaler()is affine linear, so there is no reason to do so. – Michael M Jan 21 '23 at 21:26