SAS Community, I am running a proc phreg with my code like so: proc phreg data=; model (t1,t2)*status(0)= variables; output out=Miles ressco=name1 name2 resmart=name1 name2; _ Error 22-322: Syntax error, expecting one of the following: ;,/, ATRISK, DFBETA, LD, LMAX, LOGLOGS, LOGSURV, NUM_LEFT, OUT, RESDEV, RESMART, RESSCH, RESSCO, STDXBETA, SURVIVAL, WTRESSCH, XBETA. Error 202-322: The option or parameter is not recognized and will be ignored run; I am curious to know why this is. Output is not allowed when data is set up via programming statements, but I did not use that. Also, when I remove the line for resmart, the code runs for the other output statistics.
... View more