perform_meta: Perform meta-analysis

View source: R/meta.R

perform_metaR Documentation

Perform meta-analysis

Description

Perform the meta-analysis, sensitivity analysis, and meta-regression on the chosen clinical endpoint.

Usage

perform_meta(
  endpoint = c("VO2max", "Flow-mediated Dilation", "BMI", "Body Mass", "Body Fat",
    "Systolic Blood Pressure", "Diastolic Blood Pressure", "HDL", "LDL", "Triglycerides",
    "Total Cholesterol", "C-reactive Protein", "Fasting Insulin", "Fasting Glucose",
    "HbA1c", "HOMA-IR")
)

Arguments

endpoint

The clinical endpoint to perform the meta-analysis and meta-regression.

Value

a tibble with named lists.

Examples

if (interactive()) {
# Perform meta-analysis on VO2max
results <- perform_meta(endpoint = "VO2max")
results

# Access results of Overall meta-analysis
results$meta_analysis$Overall

# Acess results of Age meta-regression
results$meta_regression$Age
}

metabolic documentation built on Oct. 10, 2023, 9:06 a.m.