Guest User

Untitled

a guest
Jan 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. if ppsc =1 then ppsc1= 1 else ppsc1 = 0.
  2.  
  3. Proc logistic Data=<your dataset>;
  4. class <your class variables>;
  5. model <your model>;
  6. Output out=<output data set name> p=<predicted probability> xbeta=<linear predictor>;
  7. Run;
  8.  
  9. Proc logistic Data=<your dataset>;
  10. class <your class variables>;
  11. model <your model>;
  12. score data= data_to_Score_model out=Scored_data ;
  13. Output out=<output data set name> p=<predicted probability> xbeta=<linear predictor>;
  14. Run;
Add Comment
Please, Sign In to add comment