Predicting Who Pays Back Loans
Prediction using SVM on Lending Club data 2007-2010
@kaggle.sarahvch_predicting_who_pays_back_loans
Prediction using SVM on Lending Club data 2007-2010
@kaggle.sarahvch_predicting_who_pays_back_loans
The data being used for this analysis includes attributes of borrowers such as fico score, interest rate, purpose of loan and if the loan was paid off in full.
The data is available from LendingClub. 2007-2010 data has been cleared of all NA values. It is also available in Machine Learning course by Jose Portilla.
Could I have set better gamma and cost values?
CREATE TABLE loan_data (
  "credit_policy" BIGINT,
  "purpose" VARCHAR,
  "int_rate" DOUBLE,
  "installment" DOUBLE,
  "log_annual_inc" DOUBLE,
  "dti" DOUBLE,
  "fico" BIGINT,
  "days_with_cr_line" DOUBLE,
  "revol_bal" BIGINT,
  "revol_util" DOUBLE,
  "inq_last_6mths" BIGINT,
  "delinq_2yrs" BIGINT,
  "pub_rec" BIGINT,
  "not_fully_paid" BIGINT
);Anyone who has the link will be able to view this.