We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61ec187 commit 31d3c3eCopy full SHA for 31d3c3e
doc/modules/preprocessing.rst
@@ -146,7 +146,7 @@ full formula is::
146
147
X_std = (X - X.min(axis=0)) / (X.max(axis=0) - X.min(axis=0))
148
149
- X_scaled = X_std / (max - min) + min
+ X_scaled = X_std * (max - min) + min
150
151
:class:`MaxAbsScaler` works in a very similar fashion, but scales in a way
152
that the training data lies within the range ``[-1, 1]`` by dividing through
0 commit comments