-
Notifications
You must be signed in to change notification settings - Fork 28
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
separate arma and arima implementations #27
Comments
I'm in favor of this but it appears R has opted not to support this (at least I can't find it). There is an |
I can file a separate issue for this, but exactly what fitting method is currently used? Regression (OLS, MLE)? There is some literature that shows the Burg method is superior to these two, and to Yule-Walker as well. http://www-stat.wharton.upenn.edu/~steele/Courses/956/ResourceDetails/YWSourceFiles/WhyNotToUseYW.pdf |
By way of context for this issue, R's forecast package offers ar, ma and arima but not an arma. |
We don't need to emulate R in terms of the source code, unless you think that there is a relative advantage by using R's approach. My view would be that arma should be the main function, and then ar, ma and arima should all be wrapped around arma. I am not sure what has been implemented as of yet in terms of the fitting method, we should ask San Urmy who wrote the relevant code. I think we should provide all available methods and let the user choose which one to invoke via an optional argument. |
I think R not supporting an arma function is more a cultural artifact, so agreed we don't need to follow that example. |
Sorry I'm late to the discussion--I wasn't on email yesterday. The function My personal preference is to have one interface to classical time series One of the things that bugs me about R's time series functionality is how All that said, I will be in the field for much of this summer, starting On Wed, May 21, 2014 at 7:51 AM, milktrader [email protected]:
|
I agree with your views on the interface. Of course the interface is separate from the underlying implementation to a big extent. We can create the |
After thinking about this for a day, I'm in favor of both an |
With the latter being a function wrapper of the former.
The text was updated successfully, but these errors were encountered: