From e042fdc9e6a58e51587217d96a705d230c97070c Mon Sep 17 00:00:00 2001 From: AStefankiv Date: Wed, 28 May 2025 23:02:57 -0600 Subject: [PATCH] Add links to examples from the docstrings and user guide #30621 --- examples/svm/plot_svm_anova.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/svm/plot_svm_anova.py b/examples/svm/plot_svm_anova.py index 1c2a78e79fdb9..fed9ef634956b 100644 --- a/examples/svm/plot_svm_anova.py +++ b/examples/svm/plot_svm_anova.py @@ -8,6 +8,11 @@ the iris dataset (4 features) and add 36 non-informative features. We can find that our model achieves best performance when we select around 10% of features. +Relevant sections in the user guide: +- Univariate Feature Selection: https://scikit-learn.org/stable/modules/feature_selection.html#univariate-feature-selection +- Standardization: https://scikit-learn.org/stable/modules/preprocessing.html#standardization-or-mean-removal-and-variance-scaling +- Support Vector Machines: https://scikit-learn.org/stable/modules/svm.html#svc +- Cross-validation: https://scikit-learn.org/stable/modules/cross_validation.html """ # Authors: The scikit-learn developers