Skip to content
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

[ENH] Add all available methods to feature selection preprocessor #2205

Merged
merged 2 commits into from
Apr 28, 2017
Merged
Changes from 1 commit
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
12 changes: 10 additions & 2 deletions Orange/widgets/data/owpreprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,11 @@ class FeatureSelectEditor(BaseEditor):
("Gain ratio", preprocess.score.GainRatio),
("Gini index", preprocess.score.Gini),
("ReliefF", preprocess.score.ReliefF),
("Fast Correlation Based Filter", preprocess.score.FCBF)
("Fast Correlation Based Filter", preprocess.score.FCBF),
("ANOVA", preprocess.score.ANOVA),
("Chi2", preprocess.score.Chi2),
("RReliefF", preprocess.score.RReliefF),
("Univariate Linear Regression", preprocess.score.UnivariateLinearRegression)
]

def __init__(self, parent=None):
Expand All @@ -488,7 +492,11 @@ def __init__(self, parent=None):
{"text": "Gain Ratio"},
{"text": "Gini Index"},
{"text": "ReliefF"},
{"text": "Fast Correlation Based Filter"}
{"text": "Fast Correlation Based Filter"},
{"text": "ANOVA"},
{"text": "Chi2"},
{"text": "RReliefF"},
{"text": "UnivariateLinearRegression"}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use spaces: this is shown in a combo.

]
)
self.layout().addWidget(self.__uni_fs)
Expand Down