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.
Cet exercice fait partie du cours
HR Analytics: Predicting Employee Churn in R
Instructions
- Calculate the turnover rate for each
location. - Create a bar chart of turnover rates for each
location.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# 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()