I have used sci-kit learn RFE and RFECV to select the best features. https://scikit-learn.org/stable/modules/generated/sklearn.feature_selection.RFE.html, It gives the ranking of the features. can anyone explain the ranking based method that is used in scikit-learn RFECV.?
There are several methods for ranking the feature
- Information Gain (IG) attribute evaluation
- Gain Ratio (GR) attribute evaluation,
- Symmetrical Uncertainty (SU) attribute evaluation,
- Relief-F (RF) attribute evaluation,
- One-R (OR) attribute evaluation
- Chi-Squared (CS) attribute evaluation.
what is the ranking method used in the scikit-learn rfecv.? scikit-learn doesn't provide mathematical methods that used in the libaray.