With AR(1) and ARMA(1,1) times series the available families of distributions for the innovations are:
Student-t (dist="studentT"
) with parameters: \(\phi\in(-1,1)\) (autoregressive coefficient), \(\nu>0\) (degrees of freedom) specified by par=c(corr, df)
;
symmetric Frechet (dist="double-Frechet"
) with parameters \(\phi\in(-1,1)\) (autoregressive coefficient), \(\sigma>0\) (scale), \(\alpha>0\) (shape), \(\theta\) (movingaverage coefficient), specified by par=c(corr, scale, shape, smooth)
;
symmetric Pareto (dist="double-Pareto"
) with parameters \(\phi\in(-1,1)\) (autoregressive coefficient), \(\sigma>0\) (scale), \(\alpha>0\) (shape), \(\theta\) (movingaverage coefficient), specified by par=c(corr, scale, shape, smooth)
.
With ARCH(1)/GARCH(1,1) time series the Gaussian family of distributions is available for the innovations (dist="Gaussian"
) with parameters, \(\alpha_0\), \(\alpha_1\), \(\beta\) specified by par=c(alpha0, alpha1, beta)
. Finally, with ARMAX(1) times series the Frechet families of distributions is available for the innovations (dist="Frechet"
) with parameters, \(\phi\in(-1,1)\) (autoregressive coefficient), \(\sigma>0\) (scale), \(\alpha>0\) (shape) specified by par=c(corr, scale, shape)
.