LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (March 2003, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments: To: "SAS-L (E-mail)" <sas-l@uga.cc.uga.edu>
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.


Back to: Top of message | Previous page | Main SAS-L page