Statement should be of the form:
ODS OUTPUT <tableName> = <datasetName>;
You're missing the OUTPUT portion of the statement.
@ajkalale wrote:
ods trace on/listing;
ods Homtests = pvalue;
ods quartiles = quart;
ods ProductLimitEstimates=ple;
proc lifetest data=aashr.test outsurv=data atrisk alpha=0.05;
time Days*Status(0);
strata Treatment;
run;
ods trace off;
Dear Comuunity,
I been trying to output a data set in the work library containing the quartiles, Log rank tests, and the Product limit estimates respectivley using the above referenced code, but I keep getting an error saying that Statement is out of order is not used properly. The error from log is found below!
Thank you!