[SPRINT] Enable links to objects in docstrings
See original GitHub issuePlease 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:
This can be linked by setting replacing:
`LogisticRegression`
with:
:class:`~sklearn.linear_model.LogisticRegression`
Issue Analytics
- State:
- Created 3 years ago
- Comments:12 (8 by maintainers)
Top Results From Across the Web
Link to class method in Python docstring - Stack Overflow
I want to add a link to a method in my class from within the docstring of another method of the same class....
Read more >Your first contribution to PyMC
Your first contribution to PyMC#. This tutorial will guide you in submitting your first PR to the pymc repository. We have tried to...
Read more >An update on the pandas documentation - Marc Garcia
Some context This post is mainly a technical post on what's the status of the pandas documentation. But let me provide a bit...
Read more >doctest — Test interactive Python examples — Python 3.11.1 ...
DocTestFinder : Finds all docstrings in a given module, and uses a DocTestParser to create a DocTest from every docstring that contains interactive...
Read more >pandas docstring guide - Python-Sprints
A Python docstring is a string used to document a Python module, class, function or method, ... To display only the last component...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hey @thomasjpfan!
Since all docstrings are already linked to their objects, I think that this issue should be closed.
Thank you everyone for working on this issue!