Making Prediction on logistic regression using SAS
proc logistic data= train descending;
class Emp_status Gender Marital_status;
model Default = Checking_amount Term Credit_score Gender Marital_status
Car_loan Personal_loan Home_loan Education_loan Emp_status
Amount Saving_amount Emp_duration Age No_of_credit_acc;
run;
As you can see, I already made a logistic regression on train dataset. However, how can I make the prediction on the test dataset? I checked online, but there are not many sources to implement this.
Topic prediction sas logistic-regression
Category Data Science