FICO Credit Score Logistic Regression Model to Predict Loan Defaults
- This project evaluates Loan Data by creating a Logistic Regression model to determine whether a customer will default on their loan based on their FICO credit score. The coding exercise is provided in the python jupyter notebook below.
- A Logistic Regression model (Logit) is created on the training dataset and tested on the test dataset.
- A Confusion Matrix is created to observe the performance of the model on the test dataframe (df_test). The confusion matrix examines predicted vs actual default values (will_default vs default).
- The logistic regression model was determined to have an 82.8% accuracy of predicting whether a customer will default on their loan by using their FICO Credit Score.
- Tables and graphs can be found here: Logit Regression Model Based on the FICO Credit Score Dataset Python Jupyter Notebook.