From 22d3dbdd578ce51df225c36e9eee2e1ee4f3ed91 Mon Sep 17 00:00:00 2001 From: thedataninja1786 Date: Sat, 9 Nov 2024 15:10:56 +0200 Subject: [PATCH 1/3] Add link to plot_feature_selection.py --- sklearn/feature_selection/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sklearn/feature_selection/__init__.py b/sklearn/feature_selection/__init__.py index fbb8f54350630..57a6a5d6b355a 100644 --- a/sklearn/feature_selection/__init__.py +++ b/sklearn/feature_selection/__init__.py @@ -2,6 +2,9 @@ These include univariate filter selection methods and the recursive feature elimination algorithm. + +For an example of univariate feature selection for improving the classification of a +noisy dataset see :ref:`sphx_glr_auto_examples_feature_selection_plot_feature_selection.py` """ # Authors: The scikit-learn developers From 8bee9b4c6eda02ffc13ee8f0fa1bb519fa8c059c Mon Sep 17 00:00:00 2001 From: thedataninja1786 Date: Sat, 9 Nov 2024 15:42:32 +0200 Subject: [PATCH 2/3] DOC improve formatting of feature selection documentation --- sklearn/feature_selection/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sklearn/feature_selection/__init__.py b/sklearn/feature_selection/__init__.py index 57a6a5d6b355a..9f83ab729609a 100644 --- a/sklearn/feature_selection/__init__.py +++ b/sklearn/feature_selection/__init__.py @@ -3,8 +3,9 @@ These include univariate filter selection methods and the recursive feature elimination algorithm. -For an example of univariate feature selection for improving the classification of a -noisy dataset see :ref:`sphx_glr_auto_examples_feature_selection_plot_feature_selection.py` +For an example of univariate feature selection for +improving the classification of a noisy dataset see +:ref:`sphx_glr_auto_examples_feature_selection_plot_feature_selection.py` """ # Authors: The scikit-learn developers From edb3eb29f664a366abd2d54f298d5123ec4dad85 Mon Sep 17 00:00:00 2001 From: thedataninja1786 Date: Sat, 9 Nov 2024 15:51:03 +0200 Subject: [PATCH 3/3] DOC improve formatting of feature selection documentation --- sklearn/feature_selection/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/feature_selection/__init__.py b/sklearn/feature_selection/__init__.py index 9f83ab729609a..1a9b6fb5e9c7b 100644 --- a/sklearn/feature_selection/__init__.py +++ b/sklearn/feature_selection/__init__.py @@ -3,7 +3,7 @@ These include univariate filter selection methods and the recursive feature elimination algorithm. -For an example of univariate feature selection for +For an example of univariate feature selection for improving the classification of a noisy dataset see :ref:`sphx_glr_auto_examples_feature_selection_plot_feature_selection.py` """