Baselight

Employee Attrition Data Prediction

A dataset for analyzing employee turnover and predicting attrition

@kaggle.mrsimple07_employee_attrition_data_prediction

Employee Attrition Data
@kaggle.mrsimple07_employee_attrition_data_prediction.employee_attrition_data

  • 31.85 KB
  • 1000 rows
  • 11 columns
employee_id

Employee ID

age

Age

gender

Gender

department

Department

job_title

Job Title

years_at_company

Years At Company

satisfaction_level

Satisfaction Level

average_monthly_hours

Average Monthly Hours

promotion_last_5years

Promotion Last 5Years

salary

Salary

attrition

Attrition

27MaleMarketingManager90.586251256247616315160132
153FemaleSalesEngineer100.2611608894502527221179947
259FemaleMarketingAnalyst80.3043817175126141184469581
342FemaleEngineeringManager10.480778869806030424240662
444FemaleSalesEngineer100.6362438875959893229174307
547MaleSalesHR Specialist100.889017669026342423797212
658MaleMarketingHR Specialist50.6889765787941906155197865
757FemaleSalesAnalyst80.981678691217057217150113
834FemaleFinanceAccountant60.0103809017222451771887471
957FemaleMarketingEngineer70.466782359682430717043283

CREATE TABLE employee_attrition_data (
  "employee_id" BIGINT,
  "age" BIGINT,
  "gender" VARCHAR,
  "department" VARCHAR,
  "job_title" VARCHAR,
  "years_at_company" BIGINT,
  "satisfaction_level" DOUBLE,
  "average_monthly_hours" BIGINT,
  "promotion_last_5years" BIGINT,
  "salary" BIGINT,
  "attrition" BIGINT
);

Share link

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