Banks Marketing Dataset
Dataset is related with direct marketing campaigns (phone calls)
@kaggle.rajkumarpandey02_bank_marketing_dataset
Dataset is related with direct marketing campaigns (phone calls)
@kaggle.rajkumarpandey02_bank_marketing_dataset
The data is related with direct marketing campaigns of a Portuguese banking institution. The marketing campaigns were based on phone calls. Often, more than one contact to the same client was required, in order to access if the product (bank term deposit) would be ('yes') or not ('no') subscribed.
There are four datasets:
The classification goal is to predict if the client will subscribe (yes/no) a term deposit (variable y).
Data Dictionary
CREATE TABLE bank (
"age" BIGINT,
"job" VARCHAR,
"marital" VARCHAR,
"education" VARCHAR,
"default" VARCHAR,
"balance" BIGINT,
"housing" VARCHAR,
"loan" VARCHAR,
"contact" VARCHAR,
"day" BIGINT,
"month" VARCHAR,
"duration" BIGINT,
"campaign" BIGINT,
"pdays" BIGINT,
"previous" BIGINT,
"poutcome" VARCHAR,
"y" VARCHAR
);CREATE TABLE bank_additional (
"age" BIGINT,
"job" VARCHAR,
"marital" VARCHAR,
"education" VARCHAR,
"default" VARCHAR,
"housing" VARCHAR,
"loan" VARCHAR,
"contact" VARCHAR,
"month" VARCHAR,
"day_of_week" VARCHAR,
"duration" BIGINT,
"campaign" BIGINT,
"pdays" BIGINT,
"previous" BIGINT,
"poutcome" VARCHAR,
"emp_var_rate" DOUBLE,
"cons_price_idx" DOUBLE,
"cons_conf_idx" DOUBLE,
"euribor3m" DOUBLE,
"nr_employed" DOUBLE,
"y" VARCHAR
);CREATE TABLE bank_additional_full (
"age" BIGINT,
"job" VARCHAR,
"marital" VARCHAR,
"education" VARCHAR,
"default" VARCHAR,
"housing" VARCHAR,
"loan" VARCHAR,
"contact" VARCHAR,
"month" VARCHAR,
"day_of_week" VARCHAR,
"duration" BIGINT,
"campaign" BIGINT,
"pdays" BIGINT,
"previous" BIGINT,
"poutcome" VARCHAR,
"emp_var_rate" DOUBLE,
"cons_price_idx" DOUBLE,
"cons_conf_idx" DOUBLE,
"euribor3m" DOUBLE,
"nr_employed" DOUBLE,
"y" VARCHAR
);CREATE TABLE bank_full (
"age" BIGINT,
"job" VARCHAR,
"marital" VARCHAR,
"education" VARCHAR,
"default" VARCHAR,
"balance" BIGINT,
"housing" VARCHAR,
"loan" VARCHAR,
"contact" VARCHAR,
"day" BIGINT,
"month" VARCHAR,
"duration" BIGINT,
"campaign" BIGINT,
"pdays" BIGINT,
"previous" BIGINT,
"poutcome" VARCHAR,
"y" VARCHAR
);Anyone who has the link will be able to view this.