welcome to the course
play

Welcome to the course! Ben Teusch Human Resources (HR) Analytics - PowerPoint PPT Presentation

DataCamp Human Resources Analytics in R: Exploring Employee Data HUMAN RESOURCES ANALYTICS IN R : EXPLORING EMPLOYEE DATA Welcome to the course! Ben Teusch Human Resources (HR) Analytics Consultant DataCamp Human Resources Analytics in R:


  1. DataCamp Human Resources Analytics in R: Exploring Employee Data HUMAN RESOURCES ANALYTICS IN R : EXPLORING EMPLOYEE DATA Welcome to the course! Ben Teusch Human Resources (HR) Analytics Consultant

  2. DataCamp Human Resources Analytics in R: Exploring Employee Data Introduction to HR analytics also known as people analytics, workforce analytics, or talent analytics a data-driven approach to managing people at work

  3. DataCamp Human Resources Analytics in R: Exploring Employee Data Tools for the course

  4. DataCamp Human Resources Analytics in R: Exploring Employee Data A general process for HR analytics Identify the groups to compare Calculate summary statistics about those groups Plot or test the differences between those groups

  5. DataCamp Human Resources Analytics in R: Exploring Employee Data Identify the groups to compare

  6. DataCamp Human Resources Analytics in R: Exploring Employee Data Calculate summary statistics about each group > mean(finance$tenure) [1] 4.81287 > mean(engineering$tenure) [1] 5.78693 > max(engineering$overtime_hours_worked) [1] 188 > sum(finance$sick_days) [1] 372

  7. DataCamp Human Resources Analytics in R: Exploring Employee Data Compare the differences statistically or visually

  8. DataCamp Human Resources Analytics in R: Exploring Employee Data Course Overview Chapter 1: Identifying the best recruiting source Chapter 2: What is driving low employee engagement? Chapter 3: Are new hires getting paid too much? Chapter 4: Are performance ratings being given consistently? Chapter 5: Improving employee safety with data

  9. DataCamp Human Resources Analytics in R: Exploring Employee Data HUMAN RESOURCES ANALYTICS IN R : EXPLORING EMPLOYEE DATA Let's practice!

  10. DataCamp Human Resources Analytics in R: Exploring Employee Data HUMAN RESOURCES ANALYTICS IN R : EXPLORING EMPLOYEE DATA Applying the HR analytics process Ben Teusch HR Analytics Consultant

  11. DataCamp Human Resources Analytics in R: Exploring Employee Data Applying the process to recruiting

  12. DataCamp Human Resources Analytics in R: Exploring Employee Data Applying the process to recruiting

  13. DataCamp Human Resources Analytics in R: Exploring Employee Data Quality of hire What makes one hire better than another? retention, or how long the employee stays their manager's satisfaction with the hire job performance the amount of time it takes to become fully productive > names(recruitment) [1] "attrition" "performance_rating" "sales_quota_pct" [4] "recruiting_source"

  14. DataCamp Human Resources Analytics in R: Exploring Employee Data Calculating the attrition rate attrition rate: attrition headcount If attrition = 1 when the employee left, this can be rewritten as: mean ( attrition )

  15. DataCamp Human Resources Analytics in R: Exploring Employee Data Review of tools from dplyr > library(dplyr) > > recruitment %>% + group_by(recruiting_source) %>% + summarize(highest_performance = max(performance_rating)) %>% + arrange(highest_performance) # A tibble: 4 x 2 recruiting_source highest_performance <chr> <dbl> 1 Search Firm 3 2 Referral 4 3 Applied Online 5 4 Campus 5

  16. DataCamp Human Resources Analytics in R: Exploring Employee Data New Tools > recruitment %>% + count(recruiting_source) # A tibble: 4 x 2 recruiting_source n <chr> <int> 1 Applied Online 130 2 Campus 56 3 Referral 45 4 Search Firm 10

  17. DataCamp Human Resources Analytics in R: Exploring Employee Data HUMAN RESOURCES ANALYTICS IN R : EXPLORING EMPLOYEE DATA Let's practice!

  18. DataCamp Human Resources Analytics in R: Exploring Employee Data HUMAN RESOURCES ANALYTICS IN R : EXPLORING EMPLOYEE DATA Visualizing recruiting data Ben Teusch HR Analytics Consultant

  19. DataCamp Human Resources Analytics in R: Exploring Employee Data Small number of groups > call_center_a %>% + group_by(team) %>% + summarize(avg_calls = mean(calls_made)) %>% + arrange(desc(avg_calls)) team avg_calls <chr> <dbl> 1 D 84.21283 2 B 79.65947 3 A 73.80612 4 C 61.73712

  20. DataCamp Human Resources Analytics in R: Exploring Employee Data Large number of groups > call_center_b %>% + group_by(team) %>% + summarize(avg_calls = mean(calls_made)) %>% + arrange(desc(avg_calls)) team avg_calls <fctr> <dbl> 1 J 98.16318 2 U 89.64824 3 M 84.90123 4 L 82.90802 5 D 82.62958 6 E 82.08344 7 C 80.46505 8 K 79.91899 9 F 77.28148 10 R 75.66100 # ... with 16 more rows

  21. DataCamp Human Resources Analytics in R: Exploring Employee Data A simple bar chart > call_center_b_summary team avg_calls <fctr> <dbl> 1 J 98.16318 2 U 89.64824 3 M 84.90123 4 L 82.90802 5 D 82.62958 6 E 82.08344 7 C 80.46505 8 K 79.91899 9 F 77.28148 10 R 75.66100 # ... with 16 more rows > ggplot(call_center_b_summary, aes(x = team, y = avg_calls)) + + geom_col()

  22. DataCamp Human Resources Analytics in R: Exploring Employee Data A simple bar chart

  23. DataCamp Human Resources Analytics in R: Exploring Employee Data A polished bar chart

  24. DataCamp Human Resources Analytics in R: Exploring Employee Data HUMAN RESOURCES ANALYTICS IN R : EXPLORING EMPLOYEE DATA Let's practice!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend