perform_meta {metabolic} | R 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
}
[Package metabolic version 0.1.2 Index]