Skip to content

Commit 549ecae

Browse files
committed
DOC various fixes in whats_new.rst
- add missing class link for VotingClassifier - document the new RobustScaler - fix some author links - fix some 80 columns violations
1 parent f3b1208 commit 549ecae

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

doc/modules/classes.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ Samples generator
351351
ensemble.RandomForestClassifier
352352
ensemble.RandomTreesEmbedding
353353
ensemble.RandomForestRegressor
354+
ensemble.VotingClassifier
354355

355356
.. autosummary::
356357
:toctree: generated/
@@ -1112,8 +1113,9 @@ See the :ref:`metrics` section of the user guide for further details.
11121113
preprocessing.MinMaxScaler
11131114
preprocessing.Normalizer
11141115
preprocessing.OneHotEncoder
1115-
preprocessing.StandardScaler
11161116
preprocessing.PolynomialFeatures
1117+
preprocessing.RobustScaler
1118+
preprocessing.StandardScaler
11171119

11181120
.. autosummary::
11191121
:toctree: generated/

doc/whats_new.rst

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ Changelog
1313
New features
1414
............
1515

16-
- The new :class:`ensemble.VotingClassifier` implements a
16+
- The new class :class:`ensemble.VotingClassifier` implements a
1717
"majority rule" / "soft voting" ensemble classifier to combine
1818
estimators for classification. By `Sebastian Raschka`_.
1919

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+
2024
Enhancements
2125
............
2226

@@ -39,16 +43,18 @@ Enhancements
3943
- Added option to use multi-output regression metrics without averaging.
4044
By Konstantin Shmelkov and `Michael Eickenberg`_.
4145

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.
4448

4549
- The :func:`tree.export_graphviz` function now supports aesthetic
46-
improvements for :class:`tree.DecisionTreeClassifier` and
50+
improvements for :class:`tree.DecisionTreeClassifier` and
4751
:class:`tree.DecisionTreeRegressor`, including options for coloring nodes
4852
by their majority class or impurity, showing variable names, and using
4953
node proportions instead of raw sample counts. By `Trevor Stephens`_.
5054

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.
57+
By `Mathieu Blondel`_ and `Tom Dupre la Tour`_.
5258

5359
Bug fixes
5460
.........
@@ -187,7 +193,7 @@ New features
187193

188194
- Added :class:`cross_validation.PredefinedSplit` cross-validation
189195
for fixed user-provided cross-validation folds.
190-
By `untom <https://github.com/untom>`_.
196+
By `untom`_.
191197

192198
- Added :class:`calibration.CalibratedClassifierCV`, an approach for
193199
calibrating the predicted probabilities of a classifier.
@@ -3479,3 +3485,7 @@ David Huard, Dave Morrill, Ed Schofield, Travis Oliphant, Pearu Peterson.
34793485
.. _Tim Head: https://github.com/betatim
34803486

34813487
.. _Tom Dupre la Tour: https://github.com/TomDLT
3488+
3489+
.. _Sebastian Raschka: http://sebastianraschka.com
3490+
3491+
.. _untom: https://github.com/untom

0 commit comments

Comments
 (0)