Skip to contents

The function performs multivariate meta-snalysis using the metaDyn::metaDyn package.

Usage

FitMetaVAR(fit, ncores = NULL, seed = NULL)

Arguments

fit

R object. Output of the FitDTVAR() function.

ncores

Positive integer. Number of cores to use.

seed

Integer. Random seed.

See also

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

Examples

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