build_report {metabolic} | R Documentation |
Build HTML report
Description
Build an HTML report with all the results from the chosen clinical endpoint
Usage
build_report(
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"),
path,
format = ".html"
)
Arguments
endpoint |
The clinical endpoint to build the HTML report. |
path |
Path to write to. It has to be a character string indicating the path and file name (without the extension). For example, |
format |
The file extension that you want to build the report with. Only |
Value
an HTML file.
Examples
if(interactive()) {
# Build an HTML report on VO2max
build_report(endpoint = "VO2max", path = tempfile())
}
[Package metabolic version 0.1.2 Index]