| Date: | Mon, 29 Nov 2004 13:05:04 -0800 |
| Reply-To: | Microstructure <randistan69@HOTMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Microstructure <randistan69@HOTMAIL.COM> |
| Organization: | http://groups.google.com |
| Subject: | Re: Proc syslin and saving coefficients |
| Content-Type: | text/plain; charset=ISO-8859-1 |
I want to save the coefficients produced by running the system of
equations together and not the OLS coefficients....
Will the Outest option work..
/** The proc syslin code **/
proc syslin data = test sur outest=x tableout;
ic: model ic = orders dol_vol age / _ADJRSQ_;
age: model age = orders dol_vol ic / _ADJRSQ_ ;
run;
|