Calculate turnover risk probability
To design an employee retention strategy, you need the turnover probability for each employee. This is also known as the employee turnover risk score. Once you know the individual risk score of each employee, you can customize and prioritize the retention strategies for employees at different risk scores.
In this exercise, you will calculate the turnover risk scores only for Active employees using the final_log model.
本练习是课程的一部分
HR Analytics: Predicting Employee Churn in R
练习说明
- Load the
tidypredictpackage. - Subset the
emp_finaldataset to contain onlyActiveemployees and calculate probability turnover for these employees usingtidypredict_to_column(). - Run the given code to print the probability of turnover for top 2 rows.
交互式实操练习
通过完成这段示例代码来试试这个练习。
# Load tidypredict
library(___)
# Calculate probability of turnover
emp_risk <- emp_final %>%
filter(status == "___") %>%
___(final_log)
# Run the code
emp_risk %>%
select(emp_id, fit) %>%
slice_max(n = 2, fit)