Employee Turnover Prediction
Employee Turnover Prediction
TURNOVER
PREDICTION
INTRODUCTION
Here we are doing a project on (employee turnover prediction) using regression and random
forest classifier method
The benefits of applying an employee turnover prediction model like this extend beyond its
pure prediction capabilities towards insights that can modify the operations of the organisation
as a whole. The cost savings to the organisation are two-fold as HR professionals can use the
model’s explanations to develop retention policies across the business and target high-risk
individuals with retention initiatives.
WHAT IS LOGISTIC REGRESSION?
Logistic Regression is a “Supervised machine learning” algorithm that can be used to
model the probability of a certain class or event. It is used when the data is linearly
separable and the outcome is binary or dichotomous in nature.
ABOUT RANDOM FOREST
CLASSIFIER
Random forest is a Supervised Machine Learning Algorithm that is used widely in
Classification and Regression problems. It builds decision trees on different samples and takes
their majority vote for classification and average in case of regression.
One of the most important features of the Random Forest Algorithm is that it can handle the
data set containing continuous variables as in the case of regression and categorical variables
as in the case of classification. It performs better results for classification problems.
PROGRAM IN JUPYTER NOTEBOOK
THANK YOU