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,
  ...
)

Arguments

data

Data used for analysis

studyID

Character string representing the study ID

effectID

Character string representing the effect size ID

sample_size

Character string representing the sample size of the studies.

effectsize_type

Type of effect size being analyzed

formula

The formula used for specifying the fixed and random structure. Used for univariate and multilevel structures.

variable_names

Vector of character strings representing the attributes with correlations. The attributes that are correlated should be separated by an underscore.

effectsize_name

Character string representing the name of the effect size column in the data.

estimation_method

Type of estimation used, either "REML" or "MLE", REML is the default

variance

Character string representing the name of the variance of the effect size in the data.

varcov_type

Type of variance covariance matrix computed. Default is 'cor_weighted' for correlations or 'smd_outcome' for standardized mean differences.

weights

User specified matrix of weights for analysis.

structure

Between studies covariance structure, default is "UN" or unstructured. See details for more specifics.

intercept

Whether a model intercept should be specified, default is FALSE meaning no intercept. See details for more information.

missing

Whether missing data should be removed, or kept. Default is removing.

optim_method

Optimization method that is passed to the optim function. Default is 'L-BFGS-B'.

robustID

A character vector specifying the cluster group to use for computing the robust standard errors.

multivariate_covs

A one-sided formula to specify the covariates used in a multivariate analysis.

tol

Tolerance of the optimization, default is 1E-10.

...

Not currently used.

Value

Returns a list of class mars; The returned object contains elements from the estimation.