I wish to ask if I can use a where statement in proc model like this:
Proc model data=A;
where t=1;
V=F(x);
solve x /out=solution;
run;
It is worth a try using the WHERE statement. SAS supports WHERE in a number of procs so unless it is specifically excluded in the Proc MODEL doco it wil probably work.
Richard temporarily back in OZ
i haven't seen it this way in the documentation. You can always use below syntax instead:
data=a(where=(t=1))
Did you try it?
I copied this example from the help pages and added a WHERE statement.
proc model data=sashelp.citimon;
where date < '01JAN1990'd ;
lhur = 1/(a * ip + b) + c;
fit lhur;
run;
It is worth a try using the WHERE statement. SAS supports WHERE in a number of procs so unless it is specifically excluded in the Proc MODEL doco it wil probably work.
Richard temporarily back in OZ
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.