-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
[SPRINT] Enable links to objects in docstrings #17417
Copy link
Copy link
Closed
Labels
Description
Please do not address this issue unless you're part of the sprint (June 6th 2020).
Some docstrings do not link to their objects:
-
sklearn.ensemble.StackingRegressor -
sklearn.ensemble.StackingClassifer -
sklearn.ensemble.AdaBoostClassifier -
sklearn.ensemble.AdaBoostRegressor -
sklearn.ensemble.BaggingClassifier -
sklearn.ensemble.BaggingRegressor -
sklearn.linear_model.RANSACRegressor
For example, the docstring in StackingRegressor do not link to the estimators:
scikit-learn/sklearn/ensemble/_stacking.py
Lines 269 to 271 in 5816817
| final_estimator : estimator, default=None | |
| A classifier which will be used to combine the base estimators. | |
| The default classifier is a `LogisticRegression`. |
This can be linked by setting replacing:
`LogisticRegression`
with:
:class:`~sklearn.linear_model.LogisticRegression`
Reactions are currently unavailable