Get startedGet started for free

Adaptive Resampling with caret

Now you are going to train a model on the voter's dataset using Adaptive Resampling!

As before, the small voters_train_data dataset has been loaded for you, as have the caret and tictoc packages.

This exercise is part of the course

Hyperparameter Tuning in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Define trainControl function
fitControl <- trainControl(___,
                           number = ___, repeats = ___)
Edit and Run Code