report | R Documentation |
This function creates an HTML report of the most relevant irace data. This report provides general statistics and plots that show the best configurations and their performance. Example: https://auto-optimization.github.io/iraceplot/articles/example/report_example.html
report(
irace_results,
filename = "report",
sections = list(experiments_matrix = NULL, convergence = FALSE),
interactive = base::interactive()
)
irace_results |
The data generated when loading the |
filename |
( |
sections |
( |
interactive |
( |
filename where the report was created or it opens the report in the default browser (interactive).
withr::with_tempdir({
iraceResults <- read_logfile(system.file(package="irace", "exdata",
"irace-acotsp.Rdata", mustWork = TRUE))
report(iraceResults, filename = file.path(getwd(), "report"))
}, clean = !base::interactive())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.