Hello,
I'm using SAS 9.4 full version. Is there a place in the following proc logist coding to put a where statement? I'd like to run this regression only when a binary variable CASE='1'.
Thanks
Laura
proc logist descending;
class VARIABLE1 VARIABLE2 VARIABLE3;
model Payment=VARIABLE1 VARIABLE2 VARIABLE3 VARIABLE4 / rsquare;
run;
proc logistic?
You can specify a WHERE statement most anywhere;
proc ...;
where case eq '1';
... more statements ...
run;
I usually use the data set option.
proc logistic data=sashelp.class(where=(age le 15));
class sex;
model sex = height weight;
run;
Did you try
proc logist descending; where case='1'; class VARIABLE1 VARIABLE2 VARIABLE3; model Payment=VARIABLE1 VARIABLE2 VARIABLE3 VARIABLE4 / rsquare; run;
It is a very good habit to always use the data= on the proc statement.
If you are working with multiple data sets with the same variables as in the modeling code there is a chance that you might just accidentally run this against the wrong data set if you run blocks of code manually.
Any chance that should be LOGISTIC?
if that doesn't work then this should
proc logist descending data=_last_(where= ( case='1') );
@lmyers2 Make sure to look up how CLASS variables are handled, the default encoding is GLM which is unlikely what you want.
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!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.