Dear SAS Gurus,
Currently I have two data sets model_train and model_valitaion.
What I want to do is to develop logistic model by model_train and applied the developed model to model_validation.
I have seen some options etc on proc logistic statement but can you give me any simple codes to do the automation of model development by model_train and applied the model to model_validation.
i.e.
proc logistic data=model_train descending;
model y= var1-var5;
run;
I want to apply the developped model by the above to model_validation and see how it works.
I know it is possible by using parameter estimate the procedure output and manually modify it and copy and paste the modelling codes and apply it to model_validation but if you know any more automated efficient way to do this by using some options of the procedure, please let me know.
Thank you Gurus,
Kaz
proc logistic data=model_train descending;
model y= var1-var5;
score data=model_validate out=want;
run;
proc logistic data=model_train descending;
model y= var1-var5;
score data=model_validate out=want;
run;
Dear Ksharp,
Thanks very much. It is so efficient and quick solution.
Kaz
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.