Credit Card
Credit card Classification
@kaggle.umairaslam_credit_card
Credit card Classification
@kaggle.umairaslam_credit_card
CUST_ID: Identification of Credit Card holder (Categorical)
BALANCE: Balance amount left in their account to make purchases
PURCHASES: Amount of purchases made from an account
INSTALLMENTS_PURCHASES: Amount of purchase done in instalments
CASH_ADVANCE: Cash in advance given by the user
CREDIT_LIMIT: Limit of Credit Card for user
PAYMENTS: Amount of Payment done by usus
MINIMUM_PAYMENTS: Minimum amount of payments made by a user
TENURE: Tenure of credit card service for user
CREATE TABLE credit_card (
"cust_id" VARCHAR,
"balance" DOUBLE,
"purchases" DOUBLE,
"installments_purchases" DOUBLE,
"cash_advance" DOUBLE,
"credit_limit" DOUBLE,
"payments" DOUBLE,
"minimum_payments" DOUBLE,
"tenure" BIGINT
);Anyone who has the link will be able to view this.