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

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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