BIARfit | R Documentation |
Fit a BIAR model to a bivariate irregularly observed time series.
BIARfit(phiValues, y1, y2, t, yerr1, yerr2, zeroMean = TRUE)
phiValues |
An array with the parameters of the BIAR model. The elements of the array are, in order, the autocorrelation and the cross correlation parameter of the BIAR model. |
y1 |
Array with the observations of the first time series of the BIAR process. |
y2 |
Array with the observations of the second time series of the BIAR process. |
t |
Array with the irregular observational times. |
yerr1 |
Array with the measurements error standard deviations of the first time series of the BIAR process. |
yerr2 |
Array with the measurements error standard deviations of the second time series of the BIAR process. |
zeroMean |
logical; if TRUE, the array y has zero mean; if FALSE, y has a mean different from zero. |
A list with the following components:
rho Estimated value of the contemporary correlation coefficient.
innov.var Estimated value of the innovation variance.
fitted Fitted values of the BIAR model.
fitted.state Fitted state values of the BIAR model.
Lambda Lambda value estimated by the BIAR model at the last time point.
Theta Theta array estimated by the BIAR model at the last time point.
Sighat Covariance matrix estimated by the BIAR model at the last time point.
Qt Covariance matrix of the state equation estimated by the BIAR model at the last time point.
Elorrieta_2021iAR
gentime
, BIARsample
, BIARphikalman
, BIARkalman
n=80 set.seed(6714) st<-gentime(n) x=BIARsample(n=n,phiR=0.9,phiI=0.3,st=st,rho=0.9) y=x$y y1=y/apply(y,1,sd) yerr1=rep(0,n) yerr2=rep(0,n) biar=BIARkalman(y1=y1[1,],y2=y1[2,],t=st,delta1 = yerr1,delta2=yerr2) biar predbiar=BIARfit(phiValues=c(biar$phiR,biar$phiI),y1=y1[1,],y2=y1[2,],t=st,yerr1 = rep(0,length(y[1,])),yerr2=rep(0,length(y[1,]))) rho=predbiar$rho print(rho) yhat=predbiar$fitted
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.