Income Dataset
Perform Binary Classification to predict if Salary is greater than $50K
@kaggle.mastmustu_income
Perform Binary Classification to predict if Salary is greater than $50K
@kaggle.mastmustu_income
The dataset provided predictive feature like education , employment status , marital status to predict if the salary is greater than $50K
It can be used to practice machine learning problem like classification.
CREATE TABLE test (
"age" BIGINT,
"workclass" VARCHAR,
"fnlwgt" BIGINT,
"education" VARCHAR,
"educational_num" BIGINT,
"marital_status" VARCHAR,
"occupation" VARCHAR,
"relationship" VARCHAR,
"race" VARCHAR,
"gender" VARCHAR,
"capital_gain" BIGINT,
"capital_loss" BIGINT,
"hours_per_week" BIGINT,
"native_country" VARCHAR
);CREATE TABLE train (
"age" BIGINT,
"workclass" VARCHAR,
"fnlwgt" BIGINT,
"education" VARCHAR,
"educational_num" BIGINT,
"marital_status" VARCHAR,
"occupation" VARCHAR,
"relationship" VARCHAR,
"race" VARCHAR,
"gender" VARCHAR,
"capital_gain" BIGINT,
"capital_loss" BIGINT,
"hours_per_week" BIGINT,
"native_country" VARCHAR,
"income_50k" BIGINT -- Income \u003e50K
);Anyone who has the link will be able to view this.