Rutgers-Data-Science-Bootcamp / Credit_Risk_Analysis

Data preparation, Statistical reasoning, Machine Learning

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Credit_Risk_Analysis

Data preparation, Statistical reasoning, Machine Learning

Overview of the analysis

Using the credit card credit dataset from LendingClub, a peer-to-peer lending services company. Credit risk is an inherently unbalanced classification problem, as good loans easily outnumber risky loans. Therefore, we need to employ different techniques to train and evaluate models with unbalanced classes, such as oversample the data using the RandomOverSampler and SMOTE algorithms, and undersample the data using the ClusterCentroids algorithm. Then, use a combinatorial approach of over and undersampling using the SMOTEENN algorithm. Next, compare two new machine learning models that reduce bias, BalancedRandomForestClassifier and EasyEnsembleClassifier, to predict credit risk. Once the analysis are performed, evaluate the performance of these models and make a written recommendation on whether they should be used to predict credit risk.

Results

Oversample algorithms:

  • Naive RandomOverSampler Result

Screen Shot 2022-09-25 at 9 13 12 PM

  • SMOTE Oversampler Result

Screen Shot 2022-09-25 at 9 14 46 PM

Undersample

  • ClusterCentroids result

Screen Shot 2022-09-25 at 9 16 18 PM

^ back to top ^

Combination (Over and Under) Sampling

  • SMOTEENN algorithm

Screen Shot 2022-09-25 at 9 31 43 PM

Ensemble Learners Algorithms:

  • Balanced Random Forest Classifier

Screen Shot 2022-09-25 at 9 33 48 PM

  • Easy Ensemble AdaBoost Classifier

Screen Shot 2022-09-25 at 9 34 07 PM

^ back to top ^

Summary

All the models used to perform the credit risk analysis show weak precision in determining if a credit risk is high. The Ensemble models brought a lot more improvment specially on the sensitivity of the high risk credits. While Adaboost algorithm shows a recall(sensitivity) of 92% so it detects almost all high risk credit, and BalancedRandomForest algorithm did not show any significant improvement (with significance 70%) from linear regression with oversampliong or downsampler or both. On another hand, all models with a low precision to detetct high risk loan, therefore a lot of low risk credits will still be falsely detected as high risk which would penalize the bank's credit strategy. For those reasons, these models are not sufficient to predict credit risk for commericial application.

Resources

  • Data: LoanStats_2019Q1.csv from LendingClub
  • Software and tools: jupyter notebook; pandas, numpy, scikit-learn, imbalanced-learn libraries

About

Data preparation, Statistical reasoning, Machine Learning


Languages

Language:Jupyter Notebook 100.0%