Date: Tue, 18 Mar 2003 14:17:57 -0800
Reply-To: "Grichuhin, Theodore J" <tgrichuh@FHCRC.ORG>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Grichuhin, Theodore J" <tgrichuh@FHCRC.ORG>
Subject: IML error in 8.2, but okay in 6.12
Content-Type: text/plain; charset="iso-8859-1"
This snippet of code takes the output of phreg (est, out2) and performs some
manipulations.
The error message only occurs in 8.2.
proc iml;
use est;
read all var _num_ into beta;
nparm= ncol(beta)-1;
use out2;
read all var _num_ into tempx;
ncolx=ncol(tempx);
reset noname;
vname={&varlist};
global =tempsum[,nparm]-subtsum;
dfball =tempx[,1]||x||global;
create dfbeta var {id &varlist global};
append from dfball;
quit;
ERROR: Number of columns in DFBALL does not match with the number of
variables in the data set.
|