Page 1 of 1

code to save fcstavg tables to a spool

Posted: Tue Jul 05, 2016 9:39 am
by mark
Using Eview's 9.5 - having trouble saving output from fcstavg commands to a predefined spool named spool1

here's the code:
v1606354.sheet
v1606354.fcastavg(wgttype=aic) eq1 eq2 eq3 eq4 eq5
spool1.append vi606354.sheet

tried to freeze the output and save but to no avail - suggestions - thanks

Re: code to save fcstavg tables to a spool

Posted: Tue Jul 05, 2016 9:45 am
by EViews Gareth
If you want to append to an existing non-empty spool called spool1:

Code: Select all

output(s) spool1 pon v1606354.fcastavg(wgttype=aic) eq1 eq2 eq3 eq4 eq5 poff
or

Code: Select all

freeze(spool2) v1606354.fcastavg(wgttype=aic) eq1 eq2 eq3 eq4 eq5 spool1.append spool2

Re: code to save fcstavg tables to a spool

Posted: Tue Jul 05, 2016 9:49 am
by mark
thanks -