mars.Rd
The primary function used for input and estimation. The function takes the data inputs and routes the estimation and structure type based on data structure. The function can handle univariate, multivariate, longitudinal, and multilevel meta-analytic models.
mars(
data,
studyID,
effectID,
sample_size,
effectsize_type = NULL,
formula = NULL,
variable_names = NULL,
effectsize_name = NULL,
estimation_method = "REML",
variance = NULL,
varcov_type,
weights = NULL,
structure = "UN",
intercept = FALSE,
missing = "remove",
optim_method = "L-BFGS-B",
robustID = NULL,
multivariate_covs = NULL,
tol = 1e-10,
...
)
Data used for analysis
Character string representing the study ID
Character string representing the effect size ID
Character string representing the sample size of the studies.
Type of effect size being analyzed
The formula used for specifying the fixed and random structure. Used for univariate and multilevel structures.
Vector of character strings representing the attributes with correlations. The attributes that are correlated should be separated by an underscore.
Character string representing the name of the effect size column in the data.
Type of estimation used, either "REML" or "MLE", REML is the default
Character string representing the name of the variance of the effect size in the data.
Type of variance covariance matrix computed. Default is 'cor_weighted' for correlations or 'smd_outcome' for standardized mean differences.
User specified matrix of weights for analysis.
Between studies covariance structure, default is "UN" or unstructured. See details for more specifics.
Whether a model intercept should be specified, default is FALSE meaning no intercept. See details for more information.
Whether missing data should be removed, or kept. Default is removing.
Optimization method that is passed to the optim function. Default is 'L-BFGS-B'.
A character vector specifying the cluster group to use for computing the robust standard errors.
A one-sided formula to specify the covariates used in a multivariate analysis.
Tolerance of the optimization, default is 1E-10.
Not currently used.
Returns a list of class mars; The returned object contains elements from the estimation.