Baselight

Making A Credit In The Bank

Dataset for determining credit extension to a potential customer

@kaggle.dimabutko_making_a_credit_in_the_bank

Bank
@kaggle.dimabutko_making_a_credit_in_the_bank.bank

  • 1.77 MB
  • 75829 rows
  • 19 columns
statement_id

Statement Id

first_payment

First Payment

credit_amount

Credit Amount

credit_term

Credit Term

income_norm

Income Norm

income_sum

Income Sum

income_sum_confirmed

Income Sum Confirmed

month_payment

Month Payment

gender_norm

Gender Norm

family_children

Family Children

marriage

Marriage

job_experience_year

Job Experience Year

job_general_experience_year

Job General Experience Year

family_years

Family Years

education_norm

Education Norm

age

Age

job_is_official

Job Is Official

work_position

Work Position

decision

Decision

90726525.41505135600.3810000037800111164032259head_of_department1
75444845.62026699.39360.0833500026060114148437specialist1
122698480608440240.2513000032420111278452specialist1
130252773.9530000600.0915000014000141037465specialist1
106604630.91691240840.2415000035536.31152012243specialist
141135142.11693632600.5800003980017441owner1
112253763.9822960360.2610000025900121262618247unskilled_worker1
1354353102314092.22960.2518000044950628248specialist1
11787082370000840.37150000560601312445head_of_department1
1258996401569336600.18200000352001113203443owner1

CREATE TABLE bank (
  "statement_id" BIGINT,
  "first_payment" DOUBLE,
  "credit_amount" DOUBLE,
  "credit_term" BIGINT,
  "income_norm" DOUBLE,
  "income_sum" BIGINT,
  "income_sum_confirmed" BIGINT,
  "month_payment" DOUBLE,
  "gender_norm" BIGINT,
  "family_children" BIGINT,
  "marriage" BIGINT,
  "job_experience_year" BIGINT,
  "job_general_experience_year" BIGINT,
  "family_years" BIGINT,
  "education_norm" BIGINT,
  "age" BIGINT,
  "job_is_official" BIGINT,
  "work_position" VARCHAR,
  "decision" BIGINT
);