ComenzarEmpieza gratis

Corroborate the splits

In the previous exercise, you split the dataset into train_set and test_set. It's important to make sure that the data you are training your model is representative of the test set. So let's make sure both train_set and test_set have the same proportion of active and inactive employees.

Este ejercicio forma parte del curso

HR Analytics: Predicting Employee Churn in R

Ver curso

Instrucciones del ejercicio

Calculate the proportion of Active and Inactive employees in train_set and test_set.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Calculate turnover proportion in train_set
train_set %>% 
  ___(status) %>% 
  ___(prop = n / sum(n))

# Calculate turnover proportion in test_set
test_set %>% 
  ___(status) %>% 
  ___(prop = n / sum(n))
Editar y ejecutar código