Hello,
proc glimmix writes statistical values concerning the model building in the output window: e.g. AIC, Person, Loglikelihood.
Is it possible to write these values into a dataset for further use?
Using the statement "output put=datasets" doesn't return these statistical values in the dataset.
Thanks!
sasstat
Look into ODS tables. You can output to a dataset any table that gets printed. Try, for example:
ods output FitStatistics=myTable;
PG
Look into ODS tables. You can output to a dataset any table that gets printed. Try, for example:
ods output FitStatistics=myTable;
PG
Thanks a lot!
It works!
sasstat
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.