sample_jackknife.RdThis is a wrapper around mars() to perform leave-one-out jackknife
estimation for a single omitted unit.
sample_jackknife(
leave_out,
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,
lasso = FALSE,
lasso_args = list(lambda_grid = 10^seq(-3, 1, length.out = 10), K = 5,
all_lasso_metrics = FALSE),
tol = 1e-10,
...
)Unit to omit from the dataset. For single-level models this is a row index. For multilevel models this is one highest-level cluster value.
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.
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".
Character string representing the variance column name.
Type of variance covariance matrix computed.
User specified matrix of weights for analysis.
Between studies covariance structure.
Whether a model intercept should be specified.
Whether missing data should be removed, or kept.
Optimization method passed to optim().
A character vector specifying the cluster group to use for robust standard errors.
A one-sided formula for multivariate analysis covariates.
TRUE/FALSE indicator that specifies if LASSO results are returned.
A list of LASSO specific arguments.
Tolerance of the optimization.
Not currently used.