Page 1 of 1

How to save the regression output

Posted: Thu Nov 12, 2009 7:17 am
by shalu
I have to run a ols regression for several firms.
When i was doing it for simple regression the program saved the regression as text file. But when I used newey west correction and used
eq1.ls(n) C3 c PSL ER1 size BM
instead of eq1.ls(p) C3 c PSL ER1 size BM
the program did not give any output.

Can anyone help

This is the code that I wrote:
load D:/eview/1-1996.wf1

output(t) D:/eview/1996-1.txt

equation eq1
eq1.ls(p) C3 c PSL ER1 size BM
eq1.ls(p) C4 c PSL ER1 size BM
eq1.ls(p) C5 c PSL ER1 size BM
eq1.ls(p) C7 c PSL ER1 size BM
eq1.ls(p) C9 c PSL ER1 size BM
eq1.ls(p) C13 c PSL ER1 size BM
eq1.ls(p) C15 c PSL ER1 size BM




output off

Re: How to save the regression output

Posted: Thu Nov 12, 2009 9:12 am
by EViews Gareth
eq1.ls(n,p) C3 c PSL ER1 size BM

Re: How to save the regression output

Posted: Fri Nov 13, 2009 2:02 am
by shalu
Thanks it worked