BookmarkSubscribeRSS Feed
samraty81
Calcite | Level 5

I am trying to predict the impact of readmission events (continuous) and type of readmission (medical, surgical, other) on total hospital costs. Because costs are skewed by nature, I am applying gamma distribution with log link function. Below is the model

 

PROC GENMOD data = abc;
class type (ref='medical') gender (ref='F')/param=ref;
model cost = event type age gender /dist=gamma link=log type3;
run;

 

 

 

1) Is the model correct?

2) How can I get marginal effects from the coefficients for different variables. i.e. is there a SAS option that will give me hospital cost within each level of type of readmission and for male and female?

3) I know modified park test will help us determine whether to use gamma distribution or not, but I can't seem to find that option in SAS.

1 REPLY 1
Ksharp
Super User
1) check EFFECTPLOT statement
2)

http://blogs.sas.com/content/iml/2015/09/10/plot-distrib-reg-model.html

http://blogs.sas.com/content/iml/2015/09/16/plot-distrib-exp.html

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 2077 views
  • 2 likes
  • 2 in conversation