HR Analytics: Employee Promotion Data
Predict the eligible candidates for promotion
@kaggle.arashnic_hr_ana
Predict the eligible candidates for promotion
@kaggle.arashnic_hr_ana
A large MNC have 9 broad verticals across the organisation. One of the problem is identifying the right people for promotion (only for manager position and below) and prepare them in time.
The final promotions are only announced after the evaluation and this leads to delay in transition to new roles. Hence, company needs help in identifying the eligible candidates at a particular checkpoint so that they can expedite the entire promotion cycle.
Multiple attributes have been provided around Employee's past and current performance along with demographics.
Features:
CREATE TABLE test (
"employee_id" BIGINT,
"department" VARCHAR,
"region" VARCHAR,
"education" VARCHAR,
"gender" VARCHAR,
"recruitment_channel" VARCHAR,
"no_of_trainings" BIGINT,
"age" BIGINT,
"previous_year_rating" DOUBLE,
"length_of_service" BIGINT,
"awards_won" BIGINT -- Awards Won?,
"avg_training_score" BIGINT
);CREATE TABLE train (
"employee_id" BIGINT,
"department" VARCHAR,
"region" VARCHAR,
"education" VARCHAR,
"gender" VARCHAR,
"recruitment_channel" VARCHAR,
"no_of_trainings" BIGINT,
"age" BIGINT,
"previous_year_rating" DOUBLE,
"length_of_service" BIGINT,
"awards_won" BIGINT -- Awards Won?,
"avg_training_score" BIGINT,
"is_promoted" BIGINT
);Anyone who has the link will be able to view this.