@@ -471,7 +471,11 @@ class FeatureSelectEditor(BaseEditor):
471471 ("Gain ratio" , preprocess .score .GainRatio ),
472472 ("Gini index" , preprocess .score .Gini ),
473473 ("ReliefF" , preprocess .score .ReliefF ),
474- ("Fast Correlation Based Filter" , preprocess .score .FCBF )
474+ ("Fast Correlation Based Filter" , preprocess .score .FCBF ),
475+ ("ANOVA" , preprocess .score .ANOVA ),
476+ ("Chi2" , preprocess .score .Chi2 ),
477+ ("RReliefF" , preprocess .score .RReliefF ),
478+ ("Univariate Linear Regression" , preprocess .score .UnivariateLinearRegression )
475479 ]
476480
477481 def __init__ (self , parent = None ):
@@ -488,7 +492,11 @@ def __init__(self, parent=None):
488492 {"text" : "Gain Ratio" },
489493 {"text" : "Gini Index" },
490494 {"text" : "ReliefF" },
491- {"text" : "Fast Correlation Based Filter" }
495+ {"text" : "Fast Correlation Based Filter" },
496+ {"text" : "ANOVA" },
497+ {"text" : "Chi2" },
498+ {"text" : "RReliefF" },
499+ {"text" : "Univariate Linear Regression" }
492500 ]
493501 )
494502 self .layout ().addWidget (self .__uni_fs )
0 commit comments