Last active
June 17, 2019 21:30
-
-
Save lucdangelis/bb03260dec1712af83ac5e3e58acf3b5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(dplyr) | |
employee_survey_data <- read.csv('Downloads/HR Analytics/employee_survey_data.csv') | |
general_data <- read.csv('Downloads/HR Analytics/general_data.csv') | |
manager_survey_data <- read.csv('Downloads/HR Analytics/manager_survey_data.csv') | |
df <- general_data %>% | |
left_join(employee_survey_data, by = "EmployeeID") %>% | |
left_join(manager_survey_data, by = "EmployeeID") | |
str(df) | |
summary(df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment