Page 1 of 1

output(t) no results

Posted: Sun Feb 23, 2014 9:10 pm
by rjrow
Hello,

I am certain this is a trivial issue, but the infuriating thing is at one point in time I had this working. I am using eviews 8 and want to simply loop through a folder of .xlsx files > create regressions > output the results into a single text file.

The typical output from the regression is fine, I don't necessarily need to manipulate the results quite yet.

Code: Select all

%filenames = @wdir(%PATH%) cd %PATH% %file = @word(%filenames,1) pageload %file output(t) out.txt for !i=2 to @wcount(%filenames) %file = @word(%filenames, !i) import %file equation eq1 eq1.ls revenue c01 next

Re: output(t) no results

Posted: Sun Feb 23, 2014 9:39 pm
by EViews Gareth
Probably need the (p) option on the LS

Re: output(t) no results

Posted: Mon Feb 24, 2014 3:33 pm
by rjrow
You are correct, the (p) is the only thing that was wrong.

I have another question regarding this same snippet. On some of the files I am importing I am having matrix inversion issues, more specifically my matrices are singular in *some* instances. However it stops my loop, are there any mechanisms available to continue the loop without stopping entirely?


Thanks

Re: output(t) no results

Posted: Mon Feb 24, 2014 3:59 pm
by rjrow
I spoke too soon.

maximum error count!

Thank you for your time regardless