bid_report | R Documentation |
Creates a comprehensive report from a completed BID framework process. This report summarizes all stages and provides recommendations for implementation.
bid_report(
validate_stage,
format = c("text", "html", "markdown"),
include_diagrams = TRUE
)
validate_stage |
A tibble output from |
format |
Output format: "text", "html", or "markdown" |
include_diagrams |
Logical, whether to include ASCII diagrams in the report (default: TRUE) |
A formatted report summarizing the entire BID process
if (interactive()) {
# After completing all 5 stages
validation_result <- bid_validate(...)
# Generate a text report
bid_report(validation_result)
# Generate an HTML report
bid_report(validation_result, format = "html")
# Generate a markdown report without diagrams
bid_report(
validation_result,
format = "markdown",
include_diagrams = FALSE
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.