+ Version 1.8.1 is here on GitHub.
+ These versions are essentially version 1.7.11 but with some minor
changes to satisfy the CRANks. Also, the GitHub version is slightly improved, so call it v1.8.1. The changes are things no one would notice in places where no one looks.
----------------------------
Versions 1.7 - Dec 2016
★ Just for historical record, version 1.7 was when CRAN maintainers got CRANky and started asking for arbitrary changes that no one would notice. I'm talking about asking to change one word in the DESCRIPTION file kind of stupid stuff. This is when the GitHub versions started.
1.7.11.
+ added `ARMAtoAR` to give the pi-weights in the invertible representation of an ARMA model ... this is included mainly for pedagogical reasons
+ changed the `max.lag` default in `acf1` and `acf2` so if the series is
seasonal, you'll see at least 4 seasons by default ... I got tired of typing
`acf2(soi, 48)` in class ... now `acf2(soi)` is the same.
1.7.10. in `sarima.for`, added the option to include regressors in the forecast
1.7.9. changed `na.action` to `na.pass` in `acf1`, `acf2`, and `ccf2`... these used to be `na.fail` which is the R stats package default
1.7.8. updated `tsplot` so the time index can be changed
1.7.7. added `tsplot` to give a nice plot of a univariate time series in one easy command ... works like `plot` for a `ts` object.
1.7.6. added `ccf2`, which plots the sample CCF of two series... it operates like `ccf` but the graphic is nicer
1.7.5. added `acf1` giving the sample ACF of a series without the zero lag... it operates like `acf2` but doesn't give the PACF
1.7.4. added data set `hor`, quarterly Hawaiian Occupancy Rate (% of rooms)
1.7.3. some additons to `acf2` allowing a plot title change, and
an option not to produce a graphic (if you only want to use or see the
values in a nice form)
1.7.2. added `plot.all` option to `sarima.for` so that if TRUE, all the data are plotted in the graphic; otherwise,
only the last 100 observations are plotted. The default is `plot.all=FALSE` because it's easier to see
the forecasts if only 100 observations are plotted.
1.7.1. minor changes to `sarima`
+ diagnostic QQplot used to
depend on `MASS` package until it gave warnings on some
simple examples ... now it's done "inhouse"<br/>
+ changed degrees of freedom calculation (wasn't sure
the commands I used to get it were correct... now I'm sure).
+ made `details=FALSE` also shut off the diagnostic plot, so if you run<br/>
`dog <- sarima(cmort, 1,1,1, details=FALSE)` <br/>
then everything (except the graphic) is stored in `dog` and you won't see any output.