You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/whats_new.rst
+16-6Lines changed: 16 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -13,10 +13,14 @@ Changelog
13
13
New features
14
14
............
15
15
16
-
- The new :class:`ensemble.VotingClassifier` implements a
16
+
- The new class :class:`ensemble.VotingClassifier` implements a
17
17
"majority rule" / "soft voting" ensemble classifier to combine
18
18
estimators for classification. By `Sebastian Raschka`_.
19
19
20
+
- The new class :class:`preprocessing.RobustScaler` provides an
21
+
alternative to :class:`preprocessing.StandardScaler` for feature-wise
22
+
centering and range normalization that is robust to outliers. By `untom`_.
23
+
20
24
Enhancements
21
25
............
22
26
@@ -39,16 +43,18 @@ Enhancements
39
43
- Added option to use multi-output regression metrics without averaging.
40
44
By Konstantin Shmelkov and `Michael Eickenberg`_.
41
45
42
-
- Added ``stratify`` option to :func:`cross_validation.train_test_split` for stratified splitting.
43
-
By Miroslav Batchkarov.
46
+
- Added ``stratify`` option to :func:`cross_validation.train_test_split`
47
+
for stratified splitting. By Miroslav Batchkarov.
44
48
45
49
- The :func:`tree.export_graphviz` function now supports aesthetic
46
-
improvements for :class:`tree.DecisionTreeClassifier` and
50
+
improvements for :class:`tree.DecisionTreeClassifier` and
47
51
:class:`tree.DecisionTreeRegressor`, including options for coloring nodes
48
52
by their majority class or impurity, showing variable names, and using
49
53
node proportions instead of raw sample counts. By `Trevor Stephens`_.
50
54
51
-
- Improved speed of ``newton-cg`` solver in :class:`linear_model.LogisticRegression`, by avoiding loss computation. By `Mathieu Blondel`_ and `Tom Dupre la Tour`_.
55
+
- Improved speed of ``newton-cg`` solver in
56
+
:class:`linear_model.LogisticRegression`, by avoiding loss computation.
0 commit comments