Investigating education field
Education field is a feature of the attrition
dataset. You are interested in using it as a predictor for churning. Start by taking a look at the factor values. The dataset is already loaded.
Este ejercicio forma parte del curso
Feature Engineering in R
Instrucciones del ejercicio
- Select
EducationField
from theattrition
dataset. - Print a frequency table of the factor values in
EducationField
.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
attrition %>%
# Select education field
___(___) %>%
# Print a frequency table of factor values
___