Page 1 of 1

Residual Diagnostics - Histogram Normality test

Posted: Mon Jun 13, 2016 1:42 am
by DannyB
Hi,

How can i retrieve "std. dev" on Histogram Normality test from a residual diagnostics?

Currently i can retrieve the simple "std. dev" of a trend using :

sdev = @stdev(nb_trend_calc)

Thanks in advance,

DB

Re: Residual Diagnostics - Histogram Normality test

Posted: Mon Jun 13, 2016 1:49 am
by EViews Gareth
Its just the standard deviation of the residual series. If the equation in question was the last estimated, you can just do:

Code: Select all

=@stdev(resid)
If not, you'll have to make the residuals using makeresid.

Re: Residual Diagnostics - Histogram Normality test

Posted: Mon Jun 13, 2016 1:56 am
by DannyB
Thanks Gareth, works like a charm!

Regards