Prepare for the Society of Actuaries (SOA) PA Exam with our comprehensive quiz. Study with flashcards and multiple choice questions with explanations. Master key concepts and boost your confidence!

Each practice test/flash card set has 50 randomly selected questions from a bank of over 500. You'll get a new set of questions each time!

Practice this question and more.


Which method is used for backward selection in the context of BIC on training data?

  1. stepAIC

  2. glmnet

  3. cv.glmnet

  4. dummyVars

The correct answer is: stepAIC

The method used for backward selection in the context of Bayesian Information Criterion (BIC) on training data is indeed stepAIC. Backward selection is a technique where you start with all candidate predictors and progressively remove the least significant variables based on a specific criterion, such as BIC, which helps in model selection by penalizing the complexity of the model. The stepAIC function specifically implements both backward and forward selection and optimizes for criteria like AIC (Akaike Information Criterion) and BIC. When applying backward selection through stepAIC with BIC, the method examines the effect of removing each variable and selects the model that provides the best balance between model fit and complexity. Other options on the list serve different purposes: glmnet is used for fitting generalized linear models via penalized likelihood with elastic net regularization but does not focus explicitly on backward elimination. cv.glmnet is used for cross-validation with glmnet to find the optimal regularization parameter, thus not focusing on backward selection. Lastly, dummyVars is used for creating dummy variables from categorical data and is not related to model selection methods like stepwise regression. Therefore, stepAIC is clearly positioned as the appropriate choice for executing backward selection while considering BIC.