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
CREATE TABLE sample_submission (
"unnamed_0" BIGINT,
"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.