Baselight

Credit Card Regression

A Comprehensive Dataset on Financial Attributes of Credit Card Customers

@kaggle.rassiem_credit_data

Credit Data
@kaggle.rassiem_credit_data.credit_data

  • 19.45 KB
  • 400 rows
  • 12 columns
id

ID

income

Income

limit

Limit

rating

Rating

cards

Cards

age

Age

education

Education

gender

Gender

student

Student

married

Married

ethnicity

Ethnicity

balance

Balance

114.891360628323411MaleNoYesCaucasian333
2106.025664548338215FemaleYesYesAsian903
3104.593707551447111MaleNoNoAsian580
4148.924950468133611FemaleNoNoAsian964
555.882489735726816MaleNoYesCaucasian331
680.18804756947710MaleNoNoCaucasian1151
720.996338825923712FemaleNoNoAfrican American203
871.40871145122879MaleNoNoAsian872
915.125330026656613FemaleNoNoCaucasian279
1071.061681949134119FemaleYesYesAfrican American1350

CREATE TABLE credit_data (
  "id" BIGINT,
  "income" DOUBLE,
  "limit" BIGINT,
  "rating" BIGINT,
  "cards" BIGINT,
  "age" BIGINT,
  "education" BIGINT,
  "gender" VARCHAR,
  "student" VARCHAR,
  "married" VARCHAR,
  "ethnicity" VARCHAR,
  "balance" BIGINT
);

Share link

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