BookmarkSubscribeRSS Feed
Question
Fluorite | Level 6

Hi All,

 

I have built a glm model (below) and I have stored the equation so I can apply it to new data, it all works fine but I would like to open the equation used to score, called here work.Lapse_equation and saved as (SAS7BITM table) but it doesn't let me open.

 

Your help would be much appreciated

 

Thank You very much

 

proc glmselect data =work.Lapse_modelling_dataset ;
/* ods select ParameterEstimates;*/
class VAR1;
model Time_To_next_order = VAR1  VAR2 VAR3 VAR4 VAR5 VAR6 VAR7 VAR8 VAR9 VAR10
/ selection = stepwise(select=SL) stats=all;
output out=work.pout predicted=p_time_to_next_order;
store work.Lapse_equation;
run;

 

1 REPLY 1
ballardw
Super User

From the documentation on the Store statement for GLMSELECT:

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.

 

If you want to reuse such things I recommend putting the store into a permanent library instead of Work. Then you can use it without having to re-run the Glmselect.

 

 

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
  • 5623 views
  • 0 likes
  • 2 in conversation