ComeçarComece de graça

Model training and prediction

You have preprocessed your training and test datasets in the previous exercise. Since you incorporated feature engineering into your modeling workflow, you are able to use all of the predictor variables available in the telecommunications data!

The next step is training your logistic regression model and using it to obtain predictions on your new preprocessed test dataset.

Your preprocessed training and test datasets, telecom_training_prep and telecom_test_prep, as well as your model object, logistic_model, have been loaded into your session.

Este exercício faz parte do curso

Modeling with tidymodels in R

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Train logistic model
logistic_fit <- ___ %>% 
  ___(___, data = ___)
Editar e executar o código