Get startedGet started for free

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.

This exercise is part of the course

HR Analytics: Predicting Employee Churn in R

View Course

Exercise instructions

  • Calculate the turnover rate for each location.
  • Create a bar chart of turnover rates for each location.

Hands-on interactive exercise

Have a go at this exercise by completing this sample 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()
Edit and Run Code