Simple Loan Classification Dataset
Classification Dataset
@kaggle.sujithmandala_simple_loan_classification_dataset
Classification Dataset
@kaggle.sujithmandala_simple_loan_classification_dataset
Column Descriptions:
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.
CREATE TABLE loan (
"age" BIGINT,
"gender" VARCHAR,
"occupation" VARCHAR,
"education_level" VARCHAR,
"marital_status" VARCHAR,
"income" BIGINT,
"credit_score" BIGINT,
"loan_status" VARCHAR
);Anyone who has the link will be able to view this.