Data Prep Sheet

Action Principale : logisticCode

Preparation Code

Script awaiting validation
Copied!
1/* Load Hmeq data into CAS */
2DATA mycas.hmeq;
3 SET sampsio.hmeq;
4RUN;
5 
6/* Fit a logistic regression model and save the model state */
7PROC CAS;
8 regression.logistic TABLE='hmeq' class={'job', 'reason'} model={depvar='bad', effects={'job', 'reason', 'loan', 'value'}} store={name='myModelStore', replace=true};
9RUN;
10QUIT;
Actions using this script
  • regression logisticCode En cours
  • No other action uses this exact script.