Hello,
I have the following code. I am trying to store coefficients to calculate predicted values. I would like to look at the work.score dataset to see the structure, but I can't seem to open it. I've tried finding and opening it and also using proc print.
proc glm data=data;
class year (ref="2010") age_gr groups(ref="1");
model cost=groups|year|female/solution;
store work.score ;
run;
Hi, you have to use proc plm to process the contents of the item store work.score. HTH.
You can't view a STORE, it's intended to be unchangeable and work with other SAS procedures.
If you want to see the estimates and manipulate them for output use the ODS TABLES or OUTPUT OUT table.
https://blogs.sas.com/content/iml/2017/01/09/ods-output-any-statistic.html
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.