Skip to content

Commit 555b859

Browse files
committed
Fix scikit-learn#4351. Rendering of docs in MinMaxScaler.
1 parent ff942f9 commit 555b859

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sklearn/preprocessing/data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ class MinMaxScaler(BaseEstimator, TransformerMixin):
153153
zero and one.
154154
155155
The standardization is given by::
156+
156157
X_std = (X - X.min(axis=0)) / (X.max(axis=0) - X.min(axis=0))
157158
X_scaled = X_std * (max - min) + min
158159

0 commit comments

Comments
 (0)