CommencerCommencer gratuitement

Fit and augment

With your lr_workflow ready to go, you can fit it to the test data to make predictions.

For model assessment, it is convenient to augment your fitted object by adding predictions and probabilities using augment().

Cet exercice fait partie du cours

Feature Engineering in R

Afficher le cours

Instructions

  • Fit the workflow to the train data.
  • Augment the lr_fit object using the test data to get it ready for assessment.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Fit the workflow to the train data
lr_fit <- 
  ___(___, data = train)

# Augment the lr_fit object
lr_aug <-
  ___(lr_fit, new_data = ___)

lr_aug
Modifier et exécuter le code