BookmarkSubscribeRSS Feed
Kels123
Quartz | Level 8

Hello,

 

I have written a code to plot a survival curve using PROC LIFETEST:

 

proc lifetest data=clean.DATABASE3 plots=survival

(FAILURE atrisk (atrisktick maxlen=13 outside)=0 14 30 90 180 365)  ;

time time1_C*censor1_C(1) ;

run; quit;

 

Because I want to better visualize my time points of particular interest, which are before the 365-day mark, I want to modify my x-axis to end at 365 days. However, I don't know how to do this. I tried using the overlay statement, but I don't think I understand how it is supposed to be used: 

 

proc template;

layout overlay / xaxisopts=(shortlabel=XNAME

                  offsetmin=.05

                  linearopts=(viewmax=365 tickvaluelist=XTICKVALS

                              tickvaluefitpolicy=XTICKVALFITPOL);

endlayout; run;

 

Please help. I just wanted to know the simplest way to modify the x-axis when using PROC LIFETEST.

 

Thanks in advance. 

2 REPLIES 2
djrisks
Barite | Level 11

Hello,

 

Try these xaxisopts and let me know please:

 

xaxisopts=(shortlabel=XNAME

                  offsetmin=.05

                  linearopts=(viewmax=365 TICKVALUESEQUENCE=(start = 1 end = 365 increment = 91) ));

 

This may also work:

 

xaxisopts=(shortlabel=XNAME

                  offsetmin=.05

                  linearopts=(viewmax=370 tickvaluelist=(0 14 30 90 180 365));

 

Many thanks,

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 5450 views
  • 0 likes
  • 3 in conversation