Baselight

Income Dataset

Perform Binary Classification to predict if Salary is greater than $50K

@kaggle.mastmustu_income

Loading...
Loading...

About this Dataset

Income Dataset

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.

Tables

Test

@kaggle.mastmustu_income.test
  • 21.76 KB
  • 899 rows
  • 14 columns
Loading...

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
);

Train

@kaggle.mastmustu_income.train
  • 463.14 KB
  • 43957 rows
  • 15 columns
Loading...

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
);

Share link

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