1
votes

Is it possible to use the rfe function in the caret package to do feature selection on a binomial GLM? I would like to pass the data frame of predictors and predictions and have it return the best model and features. If not is there another package I should use?

1

1 Answers

1
votes

See ?lrFuncs for what you desire, although you are probably better off using regularization via glmnet than a feature selection wrapper method.

Max