Allin, thanks for the info.
As far as I am concerned, I would very much like it if you added
bootstrapping capabilities to gretl so that asymptotic confidence
intervals could be plotted.
I clearly understand that this involves quite a lot of programming, so
feel free to prioritize it as you see appropriate.
Best,
John
Allin Cottrell wrote:
On Tue, 30 Dec 2008, John Paravantis wrote:
> There may exist a problem with the current CVS version that
> includes the confidence intervals...
>
> When the NLS model window opens, select the menu Graphs>Fitter,
> actual plot>Against time...
>
Urgh, yes, and get a big mess! This is now fixed in CVS and the
Windows snapshot. (This was a newly introduced bug, and nothing
specifically to do with nonlinear least squares -- it would have
messed up any fitted vs. actual plot -- so thanks for spotting
it!)
A little more on what I've done with NLS and forecasting. We now
check whether or not an NLS equation is dynamic (i.e. contains one
or more lags of the dependent variable on the right-hand side).
If so, we offer a dynamic forecast out of sample, but we do not
produce any forecast standard errors / confidence intervals, since
I don't know how we could produce defensible values without
bootstrapping (which would require a fair amount of work).
If the model is _not_ dynamic (as in your cars example), we
produce forecast standard errors as simply the standard error of
the NLS regression (abstracting from parameter uncertainty), and
confidence intervals that are point forecast plus/minus t(df,
0.025) * SE.
Allin.