ComenzarEmpieza gratis

Comparing other factors by department

Another common way to think about engagement is identifying which employees are disengaged, which you'll define as having an engagement score of 1 or 2. The survey dataset doesn't have a column called disengaged, but you can create it yourself.

Then you can use your dplyr tools to summarize several variables at once.

Este ejercicio forma parte del curso

HR Analytics: Exploring Employee Data in R

Ver curso

Ejercicio interactivo práctico

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

# Create the disengaged variable and assign the result to survey_disengaged
survey_disengaged <- survey %>% 
  ___

survey_disengaged
Editar y ejecutar código