Perform the meta-analysis, sensitivity analysis, and meta-regression on the chosen clinical endpoint.
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") )
endpoint | The clinical endpoint to perform the meta-analysis and meta-regression. |
---|
a tibble with named lists.
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 }