options nodate nonumber ps=2000 ls=100; data pbc; infile 'K:\pbc.dat.txt'; input id futime status drug age sex ascites hepato spiders edema bili chol albumin copper alk_phos sgot trig platelet protime stage; age = age/365.25; if _n_ > 312 then delete; if status=1 then status=0; run; proc phreg data=pbc; model futime*status(0)=drug age sex ascites hepato spiders edema bili chol albumin copper alk_phos sgot trig platelet protime stage; run;