Hi all, I'm struggling with my ods pdf TOC when using PROC LIFETEST along with ODS SELECT. Beside the text defined in the ODS PROCLABEL statement, I get a second line in the TOC named "Survival Curves" which refers to the same graph. Can I get rid of it? ods pdf output='mypath\filename.pdf' style = journal contents=on pdftoc = 1;
ods graphics on;
ods listing gpath='mypath';
ods graphics / imagename="g_tte_1" imagefmt=png;
ods noproctitle;
ods proclabel = 'Figure 14.2.2.59 Kaplan-Meier Plot of Time to XXX';
ods select survivalPlot;
proc lifetest data=mydat plots =(survival(atrisk(outside(0.15)) test));
time T*censor(0);
strata group;
run;
ods graphics off;
ods pdf close;
... View more