BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Befikadu
Fluorite | Level 6

Hello Everyone,

 

I need to modify the following code to change the colours of the KM curves into different line patterns (i.e. to avoid the colours) and to change the X-axis interval into 1 year (instead of 2.5).

The dataset and the outputs I am currently getting are attached.

 

Thank you.

 

*To draw the KM curves; 
proc lifetest data= survival2 plots=survival intervals=0 to 14 by 1; 
time Years * status(0); 
strata group; 
run;

 

 

 

 
1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Another approach is to export the data behing the plot and use PROC SGPLOT like this

 

proc lifetest data= survival2 plots=survival intervals=0 to 14 by 1; 
time Years * status(0); 
strata group; 
ods output SurvivalPlot=SurvivalPlot;
run;

ods graphics / AttrPriority=None;
ods html style=Journal;
proc sgplot data=SurvivalPlot;
   step x=Time y=Survival / group=StratumNum;
   xaxis min=0 max=12;
   yaxis min=0 max=1;
run;

View solution in original post

3 REPLIES 3
Befikadu
Fluorite | Level 6

My current output and a sample of desired output...

PeterClemmensen
Tourmaline | Level 20

Another approach is to export the data behing the plot and use PROC SGPLOT like this

 

proc lifetest data= survival2 plots=survival intervals=0 to 14 by 1; 
time Years * status(0); 
strata group; 
ods output SurvivalPlot=SurvivalPlot;
run;

ods graphics / AttrPriority=None;
ods html style=Journal;
proc sgplot data=SurvivalPlot;
   step x=Time y=Survival / group=StratumNum;
   xaxis min=0 max=12;
   yaxis min=0 max=1;
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 4104 views
  • 3 likes
  • 2 in conversation