Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prediction intervals for ves() and vets() #8

Open
config-i1 opened this issue Feb 18, 2021 · 1 comment
Open

Prediction intervals for ves() and vets() #8

config-i1 opened this issue Feb 18, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@config-i1
Copy link
Owner

config-i1 commented Feb 18, 2021

In the best case these should include:

  1. "conditional" - elliptic intervals for each j. These are correct, but are very hard to evaluate and return. Their usefulness is questionable.
  2. "unconditional" - rectangular regions for each separate series for each j=1,..,h. These are just projections of the max and min values of ellipses on separate axes. These are incorrect but could be useful;
  3. "independent" - assuming independence between series and based on variances for each separate series. These are even less correct than (2), but still useful.
    The simplest one is (3). It is already available in ves() and vets(). The hardest one is (1).

One of the options - produce general class from ves() / vets() and create functions that would extract and plot things.
For example:

ourModel <- ves(Y, intervals="conditional", level=0.95)
plotEllipse(ourModel, h=1)

ourModel$bounds would contain matrix with upper and lower bounds of y_1, y_2, y_3 etc conditional on a value of y_k (could be a large matrix). In case with "unconditional" or "independent" this thing would simplify to a matrix with one row.
plotEllipse() function would plot all the ellipses for h=1.

@config-i1 config-i1 added the enhancement New feature or request label Feb 18, 2021
@config-i1 config-i1 added this to To do in Improvements for ves() via automation Feb 18, 2021
@config-i1 config-i1 added this to To do in VETS-PIC via automation Feb 18, 2021
@config-i1
Copy link
Owner Author

Other options to implement after these ones:

  1. "simulated" - simulate data, get "individual" intervals;
  2. "semiparametric" - use rmultistep(), get errors, estimate Sigma, get "individual" intervals;
  3. "nonparametric" - use rmultistep(), get errors, use Taylor & Bunn quantile regression, generate "individual" intervals;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Development

No branches or pull requests

1 participant