Hi there, I've been able to modify my failure plot (e.g. been able to modify axes labels, tick marks) using guidance here: https://documentation.sas.com/?docsetId=statug&docsetTarget=statug_kaplan_sect012.htm&docsetVersion=15.1&locale=en. Last thing I am stuck on is how to get rid of the title in the data step. Anyone know what the syntax is? proc template; delete Stat.Lifetest.Graphics.ProductLimitFailure ; source Stat.Lifetest.Graphics.ProductLimitFailure / file='/folders/myfolders/CPE/TIPS/tpl'; quit; data _null_; /* Standard boilerplate */ infile '/folders/myfolders/CPE/TIPS/tpl' end=eof; /* Standard boilerplate */ input; /* Standard boilerplate */ if _n_ eq 1 then call execute('proc template;'); /* Standard boilerplate */ _infile_ = tranwrd(_infile_, 'tickvaluelist=(0 .2 .4 .6 .8 1.0)', 'tickvaluelist=(0 .2 .4 .6 .8 1.0)'); _infile_ = tranwrd(_infile_, 'viewmax=1', /* Customization: var = */ 'viewmax=1.0'); /* tranwrd(var, from, to);*/ _infile_ = tranwrd(_infile_, 'Failure Probability', 'Gene detection probability'); _infile_ = tranwrd(_infile_, 'xaxisopts=(','xaxisopts=(label="Time in days" '); call execute(_infile_); /* Standard boilerplate */ if eof then call execute('quit;'); /* Standard boilerplate */ run; /* Standard boilerplate */ proc lifetest data=tips plots=survival(failure atrisk(atrisktickonly)=0 to 180 by 30);strata randomization_group; time survdays*status(0); run; Thank you
... View more