You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> We'll send this version to CRAN when the 2nd edition of [Time Series: A Data Analysis Approach ...](https://www.routledge.com/Time-Series-A-Data-Analysis-Approach-Using-R/Shumway-Stoffer/p/book/9781041031642) is published. The planned publication date is Jan/Feb 2026.
49
49
50
+
- in `arma.spec`, added option (`redundancy.tol`) to specify how close roots have to be to report a warning of parameter redundancy or over-parameterization (default is .1).
51
+
52
+
> For example, `arma.spec(ar=.9, ma=-.85)` will report over-parameterization, whereas `arma.spec(ar=.9, ma=-.85, red=.05)` will not because the roots are 1/.9 ≈ 1.111 and 1/.85 ≈ 1.176, which differ by about .065.
53
+
50
54
- removed asking if the user wants `xts` to be installed at startup ... _apologies_ for doing what we said we would never do - it's why there is an update so soon
51
55
52
56
- in the meantime, 🆕 added script `timex()` that, with or without `xts` being loaded, will convert the dates in an `xts` data file to decimal dates so the data can be plotted easily using `tsplot` ... `?timex` for details (of course)
0 commit comments