BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
ChipmunkPDX
Calcite | Level 5

I cannot figure out how to get the labels to stop auto numbering.  I am using 9.4 sgplot to make my Kaplan-Meier graphs, but it keeps auto numbering the xaxistable labels.  I would like to not have the 1: and 2: to the left of the labels (see below).  The variable is numeric, but formatted.  If I remove the format I get the original values without the numbering.  If I change it to a text variable, the auto numbering comes back, so don't think it has to do with it being formatted.

 

Code:

proc sgplot data=SurvivalPlotData noautolegend;
styleattrs datalinepatterns=(solid solid) datacolors=(blue red);
step x=time y=survival / group=stratum name='s' grouporder=ascending;
scatter x=time y=censored / markerattrs=(symbol=plus) name='c' grouporder=ascending;
scatter x=time y=censored / markerattrs=(symbol=plus) GROUP=stratum grouporder=ascending;
xaxistable atrisk / x=tatrisk location=inside class=stratum colorgroup=stratum ;
Yaxis label="% Survival" values=(0 to 1 By .2) ;
Xaxis LABEL="Days After Transplant" values=(0 to 730 By 365) ;
INSET "Log Rank p-value = 0.0948" / BORDER TEXTATTRS = (SIZE=8 COLOR=black)
position=bottomright;
refline 365 / axis=x lineattrs=(thickness=1 color=black pattern=dash);
run;

 

 

ChipmunkPDX_0-1667428141395.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
Open your "SurvivalPlotData" dataset and see if there is "the auto numbering " in variable "stratum" ?

View solution in original post

2 REPLIES 2
Ksharp
Super User
Open your "SurvivalPlotData" dataset and see if there is "the auto numbering " in variable "stratum" ?
ChipmunkPDX
Calcite | Level 5

Thank you.  The problems was the ODS from the Proc Lifetest adding the numbering, not the graphing.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 333 views
  • 1 like
  • 2 in conversation