Page 1 of 1

Regression Output (Graph)

Posted: Wed Oct 27, 2010 11:58 am
by w_nawfal
Hello All.

I'm using Eviews 7, which allows me to graphically present regression equations along with fitted values and a +/- standard deviation band etc. - but only when i select this option from the "view" menu on the equation out put.

what is the eviews code for this please?

Re: Regression Output (Graph)

Posted: Wed Oct 27, 2010 12:34 pm
by EViews Gareth
If you're talking about View->Actual,Fitted,Residual->Actual,Fitted,Residual Graph, then the resids command will do it.

Re: Regression Output (Graph)

Posted: Wed Oct 27, 2010 2:15 pm
by w_nawfal
thanks a lot Gareth ~ that does the trick perfectly

(is there a way i can save this output as a graph in my workfile?)

Cheers
Wes

Re: Regression Output (Graph)

Posted: Wed Oct 27, 2010 2:24 pm
by EViews Gareth
use the freeze command.

Re: Regression Output (Graph)

Posted: Mon Nov 18, 2013 9:15 am
by rmoralesaramburu
Hi,

I am having errors in this inquiry, I am using Eviews 8. If I run this code

t10ois.ls t10yr c ois_1yr2yr
t10ois.resid(g)

I am not getting the actual fitted, residual graph, instead I am getting this error

"T10ois is not defined in "DO_T10OIS.RESID(G)"

Re: Regression Output (Graph)

Posted: Mon Nov 18, 2013 9:17 am
by rmoralesaramburu
It is this code I am getting errors

t10ois.ls t10yr c ois_1yr2yr
t10ois.resids(g)

Re: Regression Output (Graph)

Posted: Mon Nov 18, 2013 5:56 pm
by EViews Gareth
Works for me:

Code: Select all

create u 100 series t10yr = @nrnd series ois_1yr2yr = @nrnd equation t10ois t10ois.ls t10yr c ois_1yr2yr t10ois.resids(g)

Re: Regression Output (Graph)

Posted: Tue Nov 19, 2013 6:47 am
by rmoralesaramburu
Thanks!!