Is turnover rate different across locations?
Lower cost of living often drives employees to look for opportunities elsewhere. In this exercise, you will explore if location affects turnover.
Este ejercicio forma parte del curso
HR Analytics: Predicting Employee Churn in R
Instrucciones del ejercicio
- Calculate the turnover rate for each
location. - Create a bar chart of turnover rates for each
location.
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
# Calculate location wise turnover rate
df_location <- org %>%
group_by(___) %>%
summarize(turnover_location = ___)
# Check the results
df_location
# Visualize the results
ggplot(df_location, aes(x = ___, y = ___)) +
geom_col()