IARfit {iAR} | R Documentation |
Fitted Values of IAR model
Description
Fit an IAR model to an irregularly observed time series.
Usage
IARfit(phi, y, st, standardized = TRUE, zero.mean = TRUE)
Arguments
phi |
Estimated phi parameter by the iAR model. |
y |
Array with the time series observations. |
st |
Array with the irregular observational times. |
standardized |
logical; if TRUE, the array y is standardized; if FALSE, y contains the raw time series |
zero.mean |
logical; if TRUE, the array y has zero mean; if FALSE, y has a mean different from zero. |
Value
Fitted values of the iAR model
References
Eyheramendy S, Elorrieta F, Palma W (2018). “An irregular discrete time series model to identify residuals with autocorrelation in astronomical light curves.” Monthly Notices of the Royal Astronomical Society, 481(4), 4311–4322. ISSN 0035-8711, doi: 10.1093/mnras/sty2487, https://academic.oup.com/mnras/article-pdf/481/4/4311/25906473/sty2487.pdf.
See Also
gentime
, IARsample
, IARloglik
, IARkalman
Examples
set.seed(6714)
st<-gentime(n=100)
y<-IARsample(phi=0.99,st=st,n=100)
y<-y$series
phi=IARloglik(y=y,st=st)$phi
fit=IARfit(phi=phi,y=y,st=st)