Skip to contents

The function fits the model using the fitVARMxID::fitVARMxID package.

Usage

FitDTVAR(data, ncores = NULL, seed = NULL)

Arguments

data

R object. Output of the GenData() function.

ncores

Positive integer. Number of cores to use.

seed

Integer. Random seed.

See also

Other Model Fitting Functions: FitMetaVAR(), FitMplus(), FitNaive(), MplusInput()

Examples

if (FALSE) { # \dontrun{
seed <- 42
data <- GenData(taskid = 1, seed = seed)
fit <- FitDTVAR(data = data, seed = seed)
print(fit)
summary(fit)
coef(fit)
vcov(fit)
} # }