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

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 1848 views
  • 0 likes
  • 3 in conversation