BookmarkSubscribeRSS Feed
GKati
Pyrite | Level 9

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;

 

2 REPLIES 2
Miracle
Barite | Level 11

Hi, you have to use proc plm to process the contents of the item store work.score. HTH.

Reeza
Super User

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

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

What is ANOVA?

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.

Discussion stats
  • 2 replies
  • 2406 views
  • 0 likes
  • 3 in conversation