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

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

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