IBM Employee Dataset
Predict Employee Attrition
@kaggle.rohitsahoo_employee
Predict Employee Attrition
@kaggle.rohitsahoo_employee
Watson Analytics Sample Data
Uncover the factors that lead to employee attrition and explore important questions such as ‘show me a breakdown of distance from home by job role and attrition’ or ‘compare average monthly income by education and attrition’. This is a fictional data set created by IBM data scientists
This the data about the employee on various factor influencing the attrition from the company.
Predict the Attrition of an employee based on the various factor given
IBM Blog on employee attrition
Predict the Attrition of an employee based on the various factor given
Education
EnvironmentSatisfaction
JobInvolvement
JobSatisfaction
PerformanceRating
RelationshipSatisfaction
WorkLifeBalance
CREATE TABLE test (
"age" BIGINT,
"businesstravel" VARCHAR,
"dailyrate" BIGINT,
"department" VARCHAR,
"distancefromhome" BIGINT,
"education" BIGINT,
"educationfield" VARCHAR,
"employeecount" BIGINT,
"employeenumber" BIGINT,
"environmentsatisfaction" BIGINT,
"gender" VARCHAR,
"hourlyrate" BIGINT,
"jobinvolvement" BIGINT,
"joblevel" BIGINT,
"jobrole" VARCHAR,
"jobsatisfaction" BIGINT,
"maritalstatus" VARCHAR,
"monthlyincome" BIGINT,
"monthlyrate" BIGINT,
"numcompaniesworked" BIGINT,
"over18" VARCHAR,
"overtime" VARCHAR,
"percentsalaryhike" BIGINT,
"performancerating" BIGINT,
"relationshipsatisfaction" BIGINT,
"standardhours" BIGINT,
"stockoptionlevel" BIGINT,
"totalworkingyears" BIGINT,
"trainingtimeslastyear" BIGINT,
"worklifebalance" BIGINT,
"yearsatcompany" BIGINT,
"yearsincurrentrole" BIGINT,
"yearssincelastpromotion" BIGINT,
"yearswithcurrmanager" BIGINT
);CREATE TABLE train (
"age" BIGINT,
"attrition" BIGINT,
"businesstravel" VARCHAR,
"dailyrate" BIGINT,
"department" VARCHAR,
"distancefromhome" BIGINT,
"education" BIGINT,
"educationfield" VARCHAR,
"employeecount" BIGINT,
"employeenumber" BIGINT,
"environmentsatisfaction" BIGINT,
"gender" VARCHAR,
"hourlyrate" BIGINT,
"jobinvolvement" BIGINT,
"joblevel" BIGINT,
"jobrole" VARCHAR,
"jobsatisfaction" BIGINT,
"maritalstatus" VARCHAR,
"monthlyincome" BIGINT,
"monthlyrate" BIGINT,
"numcompaniesworked" BIGINT,
"over18" VARCHAR,
"overtime" VARCHAR,
"percentsalaryhike" BIGINT,
"performancerating" BIGINT,
"relationshipsatisfaction" BIGINT,
"standardhours" BIGINT,
"stockoptionlevel" BIGINT,
"totalworkingyears" BIGINT,
"trainingtimeslastyear" BIGINT,
"worklifebalance" BIGINT,
"yearsatcompany" BIGINT,
"yearsincurrentrole" BIGINT,
"yearssincelastpromotion" BIGINT,
"yearswithcurrmanager" BIGINT
);Anyone who has the link will be able to view this.