项目作者: AarushGProjects

项目描述 :
A credit scoring model to predict credit worthiness of an individual based on demographics, loan size and credit history using logistic regression.
高级语言: SAS
项目地址: git://github.com/AarushGProjects/Risk-Modeling-With-SAS.git
创建时间: 2021-01-26T16:48:34Z
项目社区:https://github.com/AarushGProjects/Risk-Modeling-With-SAS

开源协议:

下载


Credit Risk Modeling using Logistic Regression

Lending club is an American peer to peer lending company. There has been a significant increase in the delinquency rate. The company would like to develop a business strategy
in order to reduce the default rate. The dataset provided by the company consists of 300000 records and 151 features.

Credit Scoring

A credit scoring model is used in evaluating a credit application. Credit lending firms can save millions of dollars by assessing an applicant’s profile before approving a loan. The model estimates the probability of default using a machine learning algorithm. The model can assess the profiles of existing as well as the new clients. We will use logistic regression to predict the probability of default.

Logistic Regression is a probabilistic technique that uses a logit function for binary classification.

  1. Logit = log(odds) = Bo+B1Bn
  2. We get, P = 1/1+exp(-y)
  3. P = exp(Bo+B1Bn)/1+exp(Bo+B1Bn)

Where P: Probability of default and Bi: Regression coefficient of explanatory variables