Loan Prediction With 3 Problem Statement
3 problem statement that covers classification and regression task
@kaggle.yashpaloswal_loan_prediction_with_3_problem_statement
3 problem statement that covers classification and regression task
@kaggle.yashpaloswal_loan_prediction_with_3_problem_statement
The data contains client loan data and whether there loan got approved or not.
The main goal is to find out loan approval prediction over testing data using model (created using training data)
CREATE TABLE sample_submission (
"unnamed_0" BIGINT -- Unnamed: 0,
"loan_id" VARCHAR,
"loan_status" VARCHAR
);CREATE TABLE testing_set (
"loan_id" VARCHAR,
"gender" VARCHAR,
"married" VARCHAR,
"dependents" VARCHAR,
"education" VARCHAR,
"self_employed" VARCHAR,
"applicantincome" BIGINT,
"coapplicantincome" BIGINT,
"loanamount" DOUBLE,
"loan_amount_term" DOUBLE,
"credit_history" DOUBLE,
"property_area" VARCHAR
);CREATE TABLE training_set (
"loan_id" VARCHAR,
"gender" VARCHAR,
"married" VARCHAR,
"dependents" VARCHAR,
"education" VARCHAR,
"self_employed" VARCHAR,
"applicantincome" DOUBLE,
"coapplicantincome" DOUBLE,
"loanamount" DOUBLE,
"loan_amount_term" DOUBLE,
"credit_history" DOUBLE,
"property_area" VARCHAR,
"loan_status" VARCHAR
);Anyone who has the link will be able to view this.