BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Cruise
Ammonite | Level 13

Hello folks,

 

Do you know how to get STORE function work and output a dataset VISUAL as shown in the model below? I'd like to create a plot on the resulting VISUAL data using proc plm.

 

Thanks for your time and help!

 

proc genmod data=individ1(where=(fu le 5)) order=formatted;
fwdlink link = log(_MEAN_-d_star);
invlink ilink= exp(_XBETA_)+d_star;
class fu STAGE(REF='4') age;
model d = fu age STAGE/ error=poisson offset=ln_y type3; 
STORE VISUAL; output out=predprobs lower=lowerci pred=pred upper=upperci; run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
What makes you think it's not created? It's not a data set though, it's an object that PROC PLM will know to use once you reference it.

From the docs:
The STORE statement requests that the procedure save the context and results of the statistical analysis. The resulting item store has a binary file format that cannot be modified. The contents of the item store can be processed with the PLM procedure

View solution in original post

1 REPLY 1
Reeza
Super User
What makes you think it's not created? It's not a data set though, it's an object that PROC PLM will know to use once you reference it.

From the docs:
The STORE statement requests that the procedure save the context and results of the statistical analysis. The resulting item store has a binary file format that cannot be modified. The contents of the item store can be processed with the PLM procedure

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1369 views
  • 1 like
  • 2 in conversation