Credit Card Approval Prediction
Credit Approval Prediction
(EDA, WOE & IV calculation, Modelling)

This is a classification model to determine whether a customer application for a credit card should be approved or rejected.


Credit score cards are a common risk control method in the financial industry. It uses personal information and data submitted by credit card applicants to predict the probability of future defaults and credit card borrowings. The bank is able to decide whether to issue a credit card to the applicant. Credit scores can objectively quantify the magnitude of risk.

Generally speaking, credit score cards are based on historical data. Once encountering large economic fluctuations. Past models may lose their original predictive power. Logistic model is a common method for credit scoring as it is suitable for binary classification tasks and can calculate the coefficients of each feature.

This credit card dataset consists of Application Record and Credit Record.

In this classification model, my plan is to:

  • Observe the Weight of Evidence (WoE) and the Information Value (IV) of the features
  • Use Synthetic Minority Oversampling Technique (SMOTE) to overcome class imbalance in the dataset
  • Apply different algorithms to the training dataset:
    • Logistic Regression
    • Classification and Regression Tree (CART) or Decision Tree
    • Random Forest