Execute a chef analysis pipeline and return results as pharmhand.
Usage
run_chef_pipeline(
adam_data,
endpoints,
output_type = c("results", "table", "report"),
...
)Value
Depending on output_type:
"results": AnalysisResults object
"table": ClinicalTable object
"report": ClinicalReport object
Examples
if (FALSE) { # \dontrun{
# Define endpoints
endpoints <- list(
create_chef_endpoint("AE Rate", "AEDECOD", type = "count")
)
# Run pipeline
report <- run_chef_pipeline(
adam_data = list(adsl = adsl, adae = adae),
endpoints = endpoints,
output_type = "report"
)
} # }