IARfit | R Documentation |
Fit an IAR model to an irregularly observed time series.
IARfit(phi, y, st, standardized = TRUE, zero.mean = TRUE)
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. |
Fitted values of the iAR model
Eyheramendy_2018iAR
gentime
, IARsample
, IARloglik
, IARkalman
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.