Accuracy: 0.831
Precision: 0.716
Recall: 0.396
title: “Credit Risk Analysis Presentation” author: “Miguel” format: revealjs: theme: sky transition: fade slide-number: true
default_status).---
“How do annual income, housing status, and the loan amount together determine a borrower’s financial constraint and change their risk of default?”
The Problem: Looking at variables separately is not enough. We need to see the whole picture.
Resources vs Obligations: Income and housing are resources; the loan amount is the obligation.
Hypothesis: When a client has low income, rents, and asks for a big loan, their risk increases exponentially.
default_status (Factor: 1 for Default, 0 for Non-Default).income: Borrower’s annual income (numerical).
home_ownership: (categorical: Rent, Mortgage, Own).loan_amount: Total size of the requested loan (numerical).interest_rate (numerical) and age (numerical).---
0), while 22% defaulted (1).---
465).
loan_amount and income.loan_amount, income, home_ownership) plus control variables (interest_rate and age).---
Accuracy: 0.831
Precision: 0.716
Recall: 0.396
| Metric | Model 1 (Baseline) | Model 2 (Advanced) | Why it matters |
|---|---|---|---|
| Accuracy (Total Correct) | 78.2% | 83.1% | Model 2 makes fewer total mistakes. |
| Recall (Detecting Defaults) | 12.4% | 39.6% | Model 2 catches 3x more risky clients! |
| Precision (True Alarms) | 52.1% | 71.6% | When Model 2 flags a client, it is more reliable. |
---
---
---