Page 1 of 1

Convert a spool of objects into one data (text or csv) file

Posted: Fri Jun 24, 2011 7:22 am
by dwagner
I have the following spool:
LS Y1 C X
spool myspool
equation eq1.LS Y2 C X
myspool.append eq1
equation eq2.LS Y3 C X
myspool.append eq2
equation eq3.LS Y4 C X
myspool.append eq3
etc...........

This returns a set of distinct result sets for each equation, stacked on top of each other. I want to save this file as text or csv (all the result sets together - as opposed to copy / pasting each one separately) so I can quickly compile the coefficients and test statistics in excel. Is this possible?

Re: Convert a spool of objects into one data (text or csv) f

Posted: Fri Jun 24, 2011 8:04 am
by EViews Gareth

Code: Select all

myspool.save(t=csv) c:\mydocs\myspool.csv

Re: Convert a spool of objects into one data (text or csv) f

Posted: Fri Jun 24, 2011 8:16 am
by dwagner
Thanks - I will give that a shot