Skip to contents

The function fits the model using the mlVAR package.

Usage

FitMLVAR(data, ncores = NULL)

Arguments

data

R object. Output of the GenData() function.

ncores

Positive integer. Number of cores to use.

See also

Other Model Fitting Functions: FitDTVAR(), FitJAGS()

Examples

if (FALSE) { # \dontrun{
set.seed(42)
data <- GenData(taskid = 1)
fit <- FitMLVAR(data = data)
summary(fit)
} # }