BaşlayınÜcretsiz başlayın

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.

Bu egzersiz, kursun bir parçasıdır

HR Analytics: Predicting Employee Churn in R

Kursa Göz Atın

Egzersiz talimatları

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

Uygulamalı etkileşimli egzersiz

Bu egzersizi bu örnek kodu tamamlayarak deneyin.

# 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()
Kodu Düzenle ve Çalıştır