IniziaInizia gratis

Understanding the model predictions

In this exercise, you will predict and visualize the probability of turnover for all the cases in training and test datasets.

The model (final_log), and train_set and test_set datasets are available in your workspace.

Questo esercizio fa parte del corso

HR Analytics: Predicting Employee Churn in R

Visualizza il corso

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Make predictions for training dataset
prediction_train <- ___(final_log, newdata = train_set, 
                            type = "response")

# Look at the prediction range
___
Modifica ed esegui il codice