Baselight

Loan Default Prediction Dataset

Can you predict which individuals will default on their loan payments

@kaggle.nikhil1e9_loan_default

Loan Default
@kaggle.nikhil1e9_loan_default.loan_default

  • 7.27 MB
  • 255347 rows
  • 18 columns
loanid

LoanID

age

Age

income

Income

loanamount

LoanAmount

creditscore

CreditScore

monthsemployed

MonthsEmployed

numcreditlines

NumCreditLines

interestrate

InterestRate

loanterm

LoanTerm

dtiratio

DTIRatio

education

Education

employmenttype

EmploymentType

maritalstatus

MaritalStatus

hasmortgage

HasMortgage

hasdependents

HasDependents

loanpurpose

LoanPurpose

hascosigner

HasCoSigner

default

Default

I38PQUQS9656859945058752080415.23360.44Bachelor'sFull-timeDivorcedYesYesOtherYes
HPSK72WA7R69504321244404581514.81600.68Master'sFull-timeMarriedNoNoOtherYes
C1OZ6DPJ8Y468420812918845126321.17240.31Master'sUnemployedDivorcedYesYesAutoNo1
V2KKSFM3UN32317134479974337.07240.23High SchoolFull-timeMarriedNoNoBusinessNo
EY08JDHTZP60204379139633846.51480.73Bachelor'sUnemployedDivorcedNoYesAutoNo
A9S62RQ7US25902989044872018222.72240.1High SchoolUnemployedSingleYesNoBusinessYes1
H8GXPAOS713811118817702542980119.11120.16Bachelor'sUnemployedSingleYesNoHomeYes
0HGZQKJ36W561268021555115316748.15600.43PhDFull-timeMarriedNoNoHomeYes
1R0N3LGNRJ36420539235782783123.94480.2Bachelor'sSelf-employedDivorcedYesNoEducationNo1
CM9L1GTT2P4013278422851048011449.09480.33High SchoolSelf-employedMarriedYesNoOtherYes

CREATE TABLE loan_default (
  "loanid" VARCHAR,
  "age" BIGINT,
  "income" BIGINT,
  "loanamount" BIGINT,
  "creditscore" BIGINT,
  "monthsemployed" BIGINT,
  "numcreditlines" BIGINT,
  "interestrate" DOUBLE,
  "loanterm" BIGINT,
  "dtiratio" DOUBLE,
  "education" VARCHAR,
  "employmenttype" VARCHAR,
  "maritalstatus" VARCHAR,
  "hasmortgage" VARCHAR,
  "hasdependents" VARCHAR,
  "loanpurpose" VARCHAR,
  "hascosigner" VARCHAR,
  "default" BIGINT
);

Share link

Anyone who has the link will be able to view this.