report {iraceplot} | R Documentation |
Create HTML Report from irace data
Description
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
Usage
report(
irace_results,
filename = "report",
sections = list(experiments_matrix = NULL, convergence = FALSE),
interactive = base::interactive()
)
Arguments
irace_results |
The data generated when loading the |
filename |
( |
sections |
( |
interactive |
( |
Value
filename where the report was created or it opens the report in the default browser (interactive).
Examples
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())