The Vector Autoregressive Model
Ivan Jacob Agaloos Pesigan
2024-10-22
Source:vignettes/var.Rmd
var.Rmd
Model
The measurement model is given by where represents a vector of observed variables and a vector of latent variables for individual and time . Since the observed and latent variables are equal, we only generate data from the dynamic structure.
The dynamic structure is given by where , , and are random variables, and , , and are model parameters. Here, is a vector of latent variables at time and individual , represents a vector of latent variables at time and individual , and represents a vector of dynamic noise at time and individual . denotes a vector of intercepts, a matrix of autoregression and cross regression coefficients, and the covariance matrix of .
An alternative representation of the dynamic noise is given by where .
Data Generation
Notation
Let be the number of time points and be the number of individuals.
Let the initial condition be given by
Let the constant vector be given by
Let the transition matrix be given by
Let the dynamic process noise be given by
R Function Arguments
n
#> [1] 5
time
#> [1] 100
mu0
#> [1] 0 0 0
sigma0
#> [,1] [,2] [,3]
#> [1,] 1.0 0.2 0.2
#> [2,] 0.2 1.0 0.2
#> [3,] 0.2 0.2 1.0
sigma0_l
#> [,1] [,2] [,3]
#> [1,] 1.0 0.0000000 0.0000000
#> [2,] 0.2 0.9797959 0.0000000
#> [3,] 0.2 0.1632993 0.9660918
alpha
#> [1] 0 0 0
beta
#> [,1] [,2] [,3]
#> [1,] 0.7 0.0 0.0
#> [2,] 0.5 0.6 0.0
#> [3,] -0.1 0.4 0.5
psi
#> [,1] [,2] [,3]
#> [1,] 0.1 0.0 0.0
#> [2,] 0.0 0.1 0.0
#> [3,] 0.0 0.0 0.1
psi_l
#> [,1] [,2] [,3]
#> [1,] 0.3162278 0.0000000 0.0000000
#> [2,] 0.0000000 0.3162278 0.0000000
#> [3,] 0.0000000 0.0000000 0.3162278
Using the SimSSMVARFixed
Function from the
simStateSpace
Package to Simulate Data
library(simStateSpace)
sim <- SimSSMVARFixed(
n = n,
time = time,
mu0 = mu0,
sigma0_l = sigma0_l,
alpha = alpha,
beta = beta,
psi_l = psi_l
)
data <- as.data.frame(sim)
head(data)
#> id time y1 y2 y3
#> 1 1 0 -1.84569501 0.5815402 0.8057225
#> 2 1 1 -1.34252674 -1.1219724 0.9873906
#> 3 1 2 -0.57123433 -1.1591679 0.1280274
#> 4 1 3 -0.44448720 -0.9783200 -0.3028425
#> 5 1 4 -0.28796224 -1.2222325 -0.3807219
#> 6 1 5 0.01622801 -1.2362032 -1.0056038
plot(sim)
Model Fitting
Prepare Initial Condition
dynr_initial <- dynr::prep.initial(
values.inistate = mu0,
params.inistate = c("mu0_1", "mu0_2", "mu0_3"),
values.inicov = sigma0,
params.inicov = matrix(
data = c(
"sigma0_11", "sigma0_12", "sigma0_13",
"sigma0_12", "sigma0_22", "sigma0_23",
"sigma0_13", "sigma0_23", "sigma0_33"
),
nrow = 3
)
)
Prepare Measurement Model
dynr_measurement <- dynr::prep.measurement(
values.load = diag(3),
params.load = matrix(data = "fixed", nrow = 3, ncol = 3),
state.names = c("eta_1", "eta_2", "eta_3"),
obs.names = c("y1", "y2", "y3")
)
Prepare Dynamic Process
dynr_dynamics <- dynr::prep.formulaDynamics(
formula = list(
eta_1 ~ alpha_1 * 1 + beta_11 * eta_1 + beta_12 * eta_2 + beta_13 * eta_3,
eta_2 ~ alpha_2 * 1 + beta_21 * eta_1 + beta_22 * eta_2 + beta_23 * eta_3,
eta_3 ~ alpha_3 * 1 + beta_31 * eta_1 + beta_32 * eta_2 + beta_33 * eta_3
),
startval = c(
alpha_1 = alpha[1], alpha_2 = alpha[2], alpha_3 = alpha[3],
beta_11 = beta[1, 1], beta_12 = beta[1, 2], beta_13 = beta[1, 3],
beta_21 = beta[2, 1], beta_22 = beta[2, 2], beta_23 = beta[2, 3],
beta_31 = beta[3, 1], beta_32 = beta[3, 2], beta_33 = beta[3, 3]
),
isContinuousTime = FALSE
)
Prepare Process Noise
dynr_noise <- dynr::prep.noise(
values.latent = psi,
params.latent = matrix(
data = c(
"psi_11", "psi_12", "psi_13",
"psi_12", "psi_22", "psi_23",
"psi_13", "psi_23", "psi_33"
),
nrow = 3
),
values.observed = matrix(data = 0, nrow = 3, ncol = 3),
params.observed = matrix(data = "fixed", nrow = 3, ncol = 3)
)
Prepare the Model
model <- dynr::dynr.model(
data = dynr_data,
initial = dynr_initial,
measurement = dynr_measurement,
dynamics = dynr_dynamics,
noise = dynr_noise,
outfile = "var.c"
)
Fit the Model
results <- dynr::dynr.cook(
model,
debug_flag = TRUE,
verbose = FALSE
)
#> [1] "Get ready!!!!"
#> using C compiler: βgcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0β
#> Optimization function called.
#> Starting Hessian calculation ...
#> Finished Hessian calculation.
#> Original exit flag: 3
#> Modified exit flag: 3
#> Optimization terminated successfully: ftol_rel or ftol_abs was reached.
#> Original fitted parameters: -0.01780361 0.007988374 0.007653975 0.7000363
#> 0.003324985 0.03447235 0.4709436 0.6460795 -0.01889653 -0.1191479 0.423746
#> 0.4788747 -2.366484 -0.08040767 -0.01334399 -2.219775 -0.09185627 -2.384591
#> -0.4153391 -0.06883323 0.1606552 -0.5715268 -0.1790723 -0.362347 -0.4746303
#> 0.4357563 -0.9470132
#>
#> Transformed fitted parameters: -0.01780361 0.007988374 0.007653975 0.7000363
#> 0.003324985 0.03447235 0.4709436 0.6460795 -0.01889653 -0.1191479 0.423746
#> 0.4788747 0.09380996 -0.00754304 -0.001251799 0.1092401 -0.009878017 0.09305999
#> -0.4153391 -0.06883323 0.1606552 0.5646626 -0.1011154 -0.2046038 0.640222
#> 0.3077294 0.5801649
#>
#> Doing end processing
#> Successful trial
#> Total Time: 47.72409
#> Backend Time: 46.57138
Summary
summary(results)
#> Coefficients:
#> Estimate Std. Error t value ci.lower ci.upper Pr(>|t|)
#> alpha_1 -0.0178036 0.0139577 -1.276 -0.0451602 0.0095530 0.1014
#> alpha_2 0.0079884 0.0150619 0.530 -0.0215325 0.0375092 0.2981
#> alpha_3 0.0076540 0.0139018 0.551 -0.0195931 0.0349010 0.2911
#> beta_11 0.7000363 0.0338302 20.693 0.6337303 0.7663423 <2e-16 ***
#> beta_12 0.0033250 0.0274009 0.121 -0.0503797 0.0570297 0.4517
#> beta_13 0.0344723 0.0293774 1.173 -0.0231064 0.0920511 0.1206
#> beta_21 0.4709436 0.0365069 12.900 0.3993915 0.5424958 <2e-16 ***
#> beta_22 0.6460795 0.0295688 21.850 0.5881258 0.7040332 <2e-16 ***
#> beta_23 -0.0188965 0.0317014 -0.596 -0.0810302 0.0432371 0.2757
#> beta_31 -0.1191479 0.0336947 -3.536 -0.1851883 -0.0531074 0.0002 ***
#> beta_32 0.4237460 0.0272912 15.527 0.3702563 0.4772357 <2e-16 ***
#> beta_33 0.4788747 0.0292599 16.366 0.4215264 0.5362230 <2e-16 ***
#> psi_11 0.0938100 0.0059629 15.732 0.0821229 0.1054970 <2e-16 ***
#> psi_12 -0.0075430 0.0045626 -1.653 -0.0164855 0.0013994 0.0495 *
#> psi_13 -0.0012518 0.0041999 -0.298 -0.0094835 0.0069799 0.3829
#> psi_22 0.1092401 0.0069437 15.732 0.0956306 0.1228495 <2e-16 ***
#> psi_23 -0.0098780 0.0045535 -2.169 -0.0188026 -0.0009534 0.0153 *
#> psi_33 0.0930600 0.0059153 15.732 0.0814662 0.1046538 <2e-16 ***
#> mu0_1 -0.4153391 0.3361000 -1.236 -1.0740831 0.2434049 0.1086
#> mu0_2 -0.0688332 0.3578611 -0.192 -0.7702281 0.6325617 0.4238
#> mu0_3 0.1606552 0.3406800 0.472 -0.5070652 0.8283757 0.3187
#> sigma0_11 0.5646626 0.3571661 1.581 -0.1353702 1.2646954 0.0573 .
#> sigma0_12 -0.1011154 0.2726032 -0.371 -0.6354079 0.4331770 0.3554
#> sigma0_13 -0.2046038 0.2718534 -0.753 -0.7374268 0.3282191 0.2260
#> sigma0_22 0.6402220 0.4050371 1.581 -0.1536362 1.4340801 0.0573 .
#> sigma0_23 0.3077294 0.3053143 1.008 -0.2906756 0.9061344 0.1570
#> sigma0_33 0.5801649 0.3670160 1.581 -0.1391733 1.2995030 0.0573 .
#> ---
#> Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#>
#> -2 log-likelihood value at convergence = 796.37
#> AIC = 850.37
#> BIC = 964.17
Parameter Estimates
alpha_hat
#> [1] -0.017803606 0.007988374 0.007653975
beta_hat
#> [,1] [,2] [,3]
#> [1,] 0.7000363 0.003324985 0.03447235
#> [2,] 0.4709436 0.646079473 -0.01889653
#> [3,] -0.1191479 0.423746033 0.47887469
psi_hat
#> [,1] [,2] [,3]
#> [1,] 0.093809960 -0.007543040 -0.001251799
#> [2,] -0.007543040 0.109240060 -0.009878017
#> [3,] -0.001251799 -0.009878017 0.093059988
mu0_hat
#> [1] -0.41533909 -0.06883323 0.16065523
sigma0_hat
#> [,1] [,2] [,3]
#> [1,] 0.5646626 -0.1011154 -0.2046038
#> [2,] -0.1011154 0.6402220 0.3077294
#> [3,] -0.2046038 0.3077294 0.5801649