8000 Add links to plot_svm_anova.py #30621 by AStefankiv · Pull Request #31451 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

Add links to plot_svm_anova.py #30621 #31451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions examples/svm/plot_svm_anova.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
0