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;
View solution in original post
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.