Skip to contents

The function fits the model using the fitDTVARMx package.

Usage

FitDTVAR(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: FitJAGS(), FitMLVAR()

Examples

if (FALSE) { # \dontrun{
set.seed(42)
data <- GenData(taskid = 1)
fit <- FitDTVAR(
  data = data,
  ncores = parallel::detectCores()
)
summary(fit)
} # }