
Estimates an Order(
VARff(VAR.order = 1,
zero = c("var", "cov"),
lmean = "identitylink",
lvar = "loglink",
lcov = "identitylink")
An object of class "vglmff"
(see vglmff-class
) to be
used by VGLM/VGAM modelling functions, e.g.,
vglm
or vgam
.
Length--1 (positive) integer vector. The order of the VAR to be fitted.
Integer or character - string vector.
Same as MVNcov
.
Details at zero
.
Same as MVNcov
.
Victor Miranda.
Let
VARff
fits a linear model to the means of a
The elements of the covariance matrix are intercept--only by default.
MVNcov
,
zero
,
Links
,
ECM.EngleGran
,
vglm
.
set.seed(20170227)
nn <- 60
var.data <- data.frame(x2 = runif(nn, -2.5, 2.5))
var.data <- transform(var.data, y1 = rnorm(nn, 1.5 - 2 * x2, sqrt(exp(1.5))),
y2 = rnorm(nn, 1.0 - 1 * x2, sqrt(exp(0.75))),
y3 = rnorm(nn, 0.5 + 1 * x2, sqrt(exp(1.0))))
fit.var <- vglm(cbind(y1, y2, y3) ~ x2, VARff(VAR.order = 2),
trace = TRUE, data = var.data)
coef(fit.var, matrix = TRUE)
summary(fit.var)
vcov(fit.var)
Run the code above in your browser using DataLab