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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 3 replies
  • 3105 views
  • 3 likes
  • 2 in conversation