Dear all,
I want to estimate some parameters in proc NLMIXED, while keeping others fixed at a certain value.
In proc GLIMMIX you can use /hold=. in the parms statement, does there exist an equivalent in PROC NLMIXED?
Kind regards,
Margaux
Any value that you do not put on the PARMS statement will be treated as a constant. For example, if you always want the intercept to be 3, you can use
proc NLMIXED data=Have;
PARMS b1=0 b2=0;
Intercept = 3; /* held constant */
pred = Intercept + b1*x1 + b2*x2;
...
run;
Any value that you do not put on the PARMS statement will be treated as a constant. For example, if you always want the intercept to be 3, you can use
proc NLMIXED data=Have;
PARMS b1=0 b2=0;
Intercept = 3; /* held constant */
pred = Intercept + b1*x1 + b2*x2;
...
run;
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 lock in 2025 pricing—just $495!
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.