Baselight

Simple Loan Classification Dataset

Classification Dataset

@kaggle.sujithmandala_simple_loan_classification_dataset

Loading...
Loading...

About this Dataset

Simple Loan Classification Dataset

Column Descriptions:

  • age (int): The age of the individual.
  • gender (string): The gender of the individual, either 'Male' or 'Female'.
  • occupation (string): The occupation of the individual.
  • education_level (string): The highest level of education attained by the individual, such as 'High School', 'Associate's', 'Bachelor's', 'Master's', or 'Doctoral'.
  • marital_status (string): The marital status of the individual, either 'Single' or 'Married'.
  • income (int): The annual income of the individual in dollars.
  • credit_score (int): The credit score of the individual, ranging from 300 to 850.

loan_status (string): The target variable, indicating whether the loan application was 'Approved' or 'Denied'.
This dataset contains various demographic and financial features that could be used to build a classification model for predicting loan approval or denial. The loan_status column serves as the target variable for the classification task.

Tables

Loan

@kaggle.sujithmandala_simple_loan_classification_dataset.loan
  • 6.91 KB
  • 61 rows
  • 8 columns
Loading...

CREATE TABLE loan (
  "age" BIGINT,
  "gender" VARCHAR,
  "occupation" VARCHAR,
  "education_level" VARCHAR,
  "marital_status" VARCHAR,
  "income" BIGINT,
  "credit_score" BIGINT,
  "loan_status" VARCHAR
);

Share link

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