I tend to use:
ParameterEstimates = WORK.ParameterEstimates
FitStatistics = WORK.Model_Fit
ANOVA = Work.ANOVA
SelectionSummary = WORK.SelectionSummary;
to extract model parameters and other stats when I use proc glmselect. I am trying to do something similar for proc nlmixed. Looking at this preliminary/simplified code:
ods select none; proc nlmixed data=AnalysisData; parms s2u1=1; y = exp(-X); model Y1 ~ normal(y, s2u1); ods output parameters = Work.Parameters; run; ods select All;
I obtain:
s2u1 NegLogLike
1 553224.908
Where is the parameter for X? Any input would be very much appreciated. Thanks!
Hi all,
Sorry actually the following code snippet works fine:
ods output Parameters = Work.Parameters FitStatistics = WORK.Model_Fit ;
Sorry!
I think if a variable is not on the PARMS statement when PARMS is used then it is not included in the ParameterEstimates output
Initial Parameters are in the Parameters tables.
Estimates are in the ParameterEstimate table.
Does that provide what you're looking for?
@csetzkorn wrote:
I tend to use:
ParameterEstimates = WORK.ParameterEstimates
FitStatistics = WORK.Model_Fit
ANOVA = Work.ANOVA
SelectionSummary = WORK.SelectionSummary;
to extract model parameters and other stats when I use proc glmselect. I am trying to do something similar for proc nlmixed. Looking at this preliminary/simplified code:
ods select none; proc nlmixed data=AnalysisData; parms s2u1=1; y = exp(-X); model Y1 ~ normal(y, s2u1); ods output parameters = Work.Parameters; run; ods select All;I obtain:
s2u1 NegLogLike
1 553224.908
Where is the parameter for X? Any input would be very much appreciated. Thanks!
Hi all,
Sorry actually the following code snippet works fine:
ods output Parameters = Work.Parameters FitStatistics = WORK.Model_Fit ;
Sorry!
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
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.