Credit Card Lead Prediction
Predict whether a bank account holder is Potential Credit Card buyer or not!
@kaggle.shelvigarg_credit_card_buyers
Predict whether a bank account holder is Potential Credit Card buyer or not!
@kaggle.shelvigarg_credit_card_buyers
CREATE TABLE test_data_credit_card (
"id" VARCHAR,
"gender" VARCHAR,
"age" BIGINT,
"region_code" VARCHAR,
"occupation" VARCHAR,
"channel_code" VARCHAR,
"vintage" BIGINT,
"credit_product" VARCHAR,
"avg_account_balance" BIGINT,
"is_active" VARCHAR
);
CREATE TABLE train_data_credit_card (
"id" VARCHAR,
"gender" VARCHAR,
"age" BIGINT,
"region_code" VARCHAR,
"occupation" VARCHAR,
"channel_code" VARCHAR,
"vintage" BIGINT,
"credit_product" VARCHAR,
"avg_account_balance" BIGINT,
"is_active" VARCHAR,
"is_lead" BIGINT
);
Anyone who has the link will be able to view this.