Solved – What value of ANOVA F-Value is significant

anovafeature selectionscikit learn

I'm using ANOVA F-Value from Scikit-learn (link) to find importance of features in a machine learning task. I have numeric feature and binary classification. I'm also filtering the features whose p-value is > 0.05, but I don't know what value for the ANOVA F-Value is good enough?

Best Answer

I'm also filtering the features whose p-value is > 0.05

Don't do that. $p$-values of coefficients are a bad way to select models or features because they don't directly quantify any useful measures of model quality. Besides, while obtaining $p < α$ tells you that a null hypothesis is infeasible, obtaining $p > α$ doesn't much support its feasibility, so when a test fails to reject the null hypothesis, it doesn't tell you anything.

Related Question