How do I get proc lifetest to output a graph where I want to start at a time different of zero
You can start at a different time by specifing the axes options.
Below is a modification of a Proc Lifetest example found on UCLA's website (halfway down the page):
http://www.ats.ucla.edu/stat/sas/examples/asa/asa2_may_2006.htm
I changed the x-axis to start at 10 rather than 0
proc lifetest data=hmohiv noprint;
time time *censor(0);
survival out=Out1 confband=hw;
run;
symbol i=join v=circle r=5 ;
axis1 order = (0 to 1 by .2) label=(a=90 "Survival Probability") minor=none;
axis2 order = (10 to 60 by 10) label = ("Survival Time (Months)") minor=none;
legend label=none value=(h=2 font=swiss 'Kaplan-Meyer' 'HW lower' 'HW upper'
'Pointwise lower' 'Pointwise upper')
position=(top right inside) mode=share cborder=black;
proc gplot data = out1;
plot (survival hw_lcl hw_ucl sdf_lcl sdf_ucl)*time
/legend=legend1 vaxis=axis1 haxis=axis2 overlay;
run;
quit;
You can start at a different time by specifing the axes options.
Below is a modification of a Proc Lifetest example found on UCLA's website (halfway down the page):
http://www.ats.ucla.edu/stat/sas/examples/asa/asa2_may_2006.htm
I changed the x-axis to start at 10 rather than 0
proc lifetest data=hmohiv noprint;
time time *censor(0);
survival out=Out1 confband=hw;
run;
symbol i=join v=circle r=5 ;
axis1 order = (0 to 1 by .2) label=(a=90 "Survival Probability") minor=none;
axis2 order = (10 to 60 by 10) label = ("Survival Time (Months)") minor=none;
legend label=none value=(h=2 font=swiss 'Kaplan-Meyer' 'HW lower' 'HW upper'
'Pointwise lower' 'Pointwise upper')
position=(top right inside) mode=share cborder=black;
proc gplot data = out1;
plot (survival hw_lcl hw_ucl sdf_lcl sdf_ucl)*time
/legend=legend1 vaxis=axis1 haxis=axis2 overlay;
run;
quit;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.