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

Adding ARFIMA models. #93

Open
ASLlohmann opened this issue Jun 14, 2020 · 0 comments
Open

Adding ARFIMA models. #93

ASLlohmann opened this issue Jun 14, 2020 · 0 comments

Comments

@ASLlohmann
Copy link
Contributor

ASLlohmann commented Jun 14, 2020

I would be nice to add the arfima model from forecast package.

Such "model" are quite uncommon but are working quite well for times series that have long rum memory such as consumer/Producer price indexes. Especially in some countries where there is mid-month divulgations.

I think it would be quite easy, just changing a few lines of code.

 models <- c("a" = auto.arima, "e" = ets, "f" = thetam, "n" = nnetar,
              "s" = stlm, "t" = tbats, "z" = snaive)	              "s" = stlm, "t" = tbats, "z" = snaive, "x"=arfima)

validModels <- c("a", "e", "f", "n", "s", "t", "z", "x")

It is working on my computer. The only problem is an error message when I run the cvts function with a hybridModel that include a "x" component.

Error in { :
task 1 failed - "'data' must be of a vector type, was 'NULL'"

Any ideas ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants