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
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
);
Anyone who has the link will be able to view this.