Bank Marketing
Portuguese Banking Marketing Campaigns
@kaggle.abdelazizsami_bank_marketing
Portuguese Banking Marketing Campaigns
@kaggle.abdelazizsami_bank_marketing
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).
Dataset Characteristics
Multivariate
Associated Tasks
Classification
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_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.