BookmarkSubscribeRSS Feed
Cruise
Ammonite | Level 13

Hello folks, 

 

I'm trying to reproduce the graph below (Woods et al.,2012) attached to this post. And I read and produced the cumulative relative risk tables following Dr. Dickman's resources for  http://www.pauldickman.com/survival/sas/relative_survival_using_sas.pdf. Now I'm getting into the Chapter: Modelling relative survival hoping that I'm pursuing the right direction to find a way to reproduce the graph.

 

My question is:

 

1. Do you recognize this graph as a SAS output? or you think that authors might have created this plot from any output estimates data?

2. Does proc phreg produce "excess hazard ratio" as used on the y-axis int he plot below over a survival time in weeks?

I know these authors mostly use stata software. But I can't imagine that SAS wouldn't have a way to produce something close. I keep reading Dr. Dickman's manual. In the meantime, I greatly appreciate to hear from your educated suggestions as to how I should approach to produce a similar plot like below. I use comparable data to that of Woods et al., and datasets that Dr. Dickman used in his tutorial.

 

 

PICTURE_WOODS.png

1 REPLY 1
Cruise
Ammonite | Level 13

It appears that Dickman suggested to use poisson regression to model and output relative excess risks. Please let me know if this might be the way to obtain estimates to graph in SAS. I'll keep testing in the meantime. Thanks.

 

proc genmod data=&grouped(where=(fu le 5)) order=formatted;
title2 'Poisson error model fitted to collapsed data';
title3 'Main effects model (follow-up, sex, age, and dgnyear)';
fwdlink link = log(_MEAN_-d_star);
invlink ilink= exp(_XBETA_)+d_star;
class fu sex age yydx;
model d = fu sex yydx age / error=poisson offset=ln_y type3;
format fu fu. age age. yydx yydx.;
run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 629 views
  • 0 likes
  • 1 in conversation