Page 1 of 1
SPOOL
Posted: Thu Jul 02, 2009 7:13 pm
by lpluser
I m a very new Eviews user and have seen questions elsewhere on this board that suggest using SPOOL function to print to in order to capture a series of regression model outputs.
could someone provide a sample of how to do this using SPOOL and printing to SPOOL
Thanks
Re: SPOOL
Posted: Thu Jul 02, 2009 7:47 pm
by EViews Gareth
Code: Select all
create u 100
series y=nrnd
series x1=nrnd
series x2=nrnd
equation e1.ls y c x1
equation e2.ls y c x2
spool myspool
myspool.append e1
myspool.append e2
Re: SPOOL
Posted: Thu Jul 02, 2009 7:56 pm
by startz
Or, after having created mySpool, redirect desired output in the Print dialog.
Re: SPOOL
Posted: Fri Jul 03, 2009 9:07 am
by lpluser
Thank you.
Can I redirect within the programing environment, or can I only do that via the dialog
Re: SPOOL
Posted: Fri Jul 03, 2009 9:38 am
by startz
Gareth's example effectively does that. In addition, you might want to look at the Output command in the help system.
Re: SPOOL
Posted: Fri Jul 03, 2009 11:57 am
by lpluser
wonderful..thanks to you both