BaşlayınÜcretsiz Başlayın

Building final logistic regression model

We removed the highly collinear variables (level and compensation) to create train_set_final. It's time for you to build the final logistic regression model using this dataset. This model will be used to predict the probability of turnover of all the employees.

Bu egzersiz

HR Analytics: Predicting Employee Churn in R

kursunun bir parçasıdır
Kursu Görüntüle

Egzersiz talimatları

  • Build a logistic regression model using all the independent variables in train_set_final to predict turnover.
  • Print the summary of this model.

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Build the final logistic regression model
final_log <- ___(___, family = "binomial", 
                 ___)

# Print summary 
___
Kodu Düzenle ve Çalıştır