8000 DOC Add link to plot_lasso_coordinate_descent_path in lasso_path docs… · scikit-learn/scikit-learn@906d6c6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 906d6c6

Browse files
committed
DOC Add link to plot_lasso_coordinate_descent_path in lasso_path docstring
1 parent bde701d commit 906d6c6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

sklearn/linear_model/_coordinate_descent.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,11 @@ def lasso_path(
355355
>>> print(coef_path_continuous([5., 1., .5]))
356356
[[0. 0. 0.46915237]
357357
[0.2159048 0.4425765 0.23668876]]
358+
359+
For a visual example of computing and plotting the Lasso coordinate
360+
descent path, see
361+
:ref:`sphx_glr_auto_examples_linear_model_plot_lasso_coordinate_descent_path.py`.
362+
358363
"""
359364
return enet_path(
360365
X,

0 commit comments

Comments
 (0)
0