Baselight

HR Analytics: Employee Promotion Data

Predict the eligible candidates for promotion

@kaggle.arashnic_hr_ana

Train
@kaggle.arashnic_hr_ana.train

  • 627.27 KB
  • 54808 rows
  • 13 columns
employee_id

Employee Id

department

Department

region

Region

education

Education

gender

Gender

recruitment_channel

Recruitment Channel

no_of_trainings

No Of Trainings

age

Age

previous_year_rating

Previous Year Rating

length_of_service

Length Of Service

awards_won

Awards Won?

avg_training_score

Avg Training Score

is_promoted

Is Promoted

65438Sales & Marketingregion_7Master's & abovefsourcing1355849
65141Operationsregion_22Bachelor'smother1305460
7513Sales & Marketingregion_19Bachelor'smsourcing1343750
2542Sales & Marketingregion_23Bachelor'smother23911050
48945Technologyregion_26Bachelor'smother1453273
58896Analyticsregion_2Bachelor'smsourcing2313785
20379Operationsregion_20Bachelor'sfother1313559
16290Operationsregion_34Master's & abovemsourcing1333663
73202Analyticsregion_20Bachelor'smother1284583
28911Sales & Marketingregion_1Master's & abovemsourcing1325554

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,
  "avg_training_score" BIGINT,
  "is_promoted" BIGINT
);

Share link

Anyone who has the link will be able to view this.