Baselight

Bank Loan Approval - LR, DT, RF And AUC

Classification Problem using LR, DT, RF and AUC in R Programming

@kaggle.vikramamin_bank_loan_approval_lr_dt_rf_and_auc

Bankloan
@kaggle.vikramamin_bank_loan_approval_lr_dt_rf_and_auc.bankloan

  • 74.13 KB
  • 5000 rows
  • 14 columns
id

ID

age

Age

experience

Experience

income

Income

zip_code

ZIP.Code

family

Family

ccavg

CCAvg

education

Education

mortgage

Mortgage

personal_loan

Personal.Loan

securities_account

Securities.Account

cd_account

CD.Account

online

Online

creditcard

CreditCard

1251499110741.611
24519349008931.511
339151194720111
43591009411212.72
535845913304121
63713299212140.421551
75327729171121.521
85024229394310.331
93510819008930.621041
103491809302318.931

CREATE TABLE bankloan (
  "id" BIGINT,
  "age" BIGINT,
  "experience" BIGINT,
  "income" BIGINT,
  "zip_code" BIGINT,
  "family" BIGINT,
  "ccavg" DOUBLE,
  "education" BIGINT,
  "mortgage" BIGINT,
  "personal_loan" BIGINT,
  "securities_account" BIGINT,
  "cd_account" BIGINT,
  "online" BIGINT,
  "creditcard" BIGINT
);

Share link

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