Warning only appears when rerunning program
Posted: Tue May 31, 2016 5:41 am
Hi all,
I am quite new to EViews (v9), and I am trying to work on/adjust a program given to me by someone else.
According to this link: http://forums.eviews.com/viewtopic.php?f=5&t=893 my question is "nonsensical", but here it goes anyway...
I have adjusted the program to my own data and specified a system I want to be estimated. Everytime I start Eviews and open and run the program, the estimation works fine (enough...). But when I rerun the program, I get a warning on singular covariance, and hence no standard errors etc. If I close Eviews completely and open and run the program again, there is no warning, and I get the standard errors (and different coefficients).
So I thought the issue had to be that Eviews does not "clear" its memory, since the problem only arises after rerunning the program, but according to the link, memory is cleared when rerunning a program.
Any idea what the problem could be? Why do I get different estimations and warnings when rerunning a program? This problem does not exist when I run the original program, it is only when I adjust it to use my own data and specify a different system the problem occurs.
Beginning of the code:
(And then the system is formulated)
Thanks!
I am quite new to EViews (v9), and I am trying to work on/adjust a program given to me by someone else.
According to this link: http://forums.eviews.com/viewtopic.php?f=5&t=893 my question is "nonsensical", but here it goes anyway...
I have adjusted the program to my own data and specified a system I want to be estimated. Everytime I start Eviews and open and run the program, the estimation works fine (enough...). But when I rerun the program, I get a warning on singular covariance, and hence no standard errors etc. If I close Eviews completely and open and run the program again, there is no warning, and I get the standard errors (and different coefficients).
So I thought the issue had to be that Eviews does not "clear" its memory, since the problem only arises after rerunning the program, but according to the link, memory is cleared when rerunning a program.
Any idea what the problem could be? Why do I get different estimations and warnings when rerunning a program? This problem does not exist when I run the original program, it is only when I adjust it to use my own data and specify a different system the problem occurs.
Beginning of the code:
Code: Select all
close @all
%path = @runpath
cd %path
%START = "1985q1"
%END = "2015q4"
wfcreate model q %start %end
dbopen "xxx"
fetch y1 y2 y3 x1 x2 x3 x4
smpl @all
smpl 1985q1 @last
Thanks!