display_report | R Documentation |
Produce RMarkdown-compatible output of all results
display_report(processed_results)
processed_results |
A list of processed result objects |
A formatted list of RMarkdown widgets
## Not run:
vm_dataset = vm_r$init_dataset(
dataset=data,
target_column="Exited",
class_labels=list("0" = "Did not exit", "1" = "Exited")
)
tabular_suite_results <- vm_r$run_test_suite("tabular_dataset", dataset=vm_dataset)
processed_results <- process_result(tabular_suite_results)
all_widgets <- display_report(processed_results)
for (widget in all_widgets) {
print(widget)
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.