report.ranked.list | R Documentation |
Generates a benchmarking report in PDF, HTML or Word format without bootstrapping results.
It contains the rankings, plots of the raw assessment data and plots of the ranking stability.
For multi-task challenges, it also contains plots of cross-task insights. If you are interested in
the individual plots as separate files, set argument clean
to FALSE
and specify fig.format
.
## S3 method for class 'ranked.list'
report(
object,
consensus,
file,
title = "<Challenge name>",
colors = default_colors,
format = "PDF",
latex_engine = "pdflatex",
clean = TRUE,
fig.format = NULL,
dpi = 150,
open = TRUE,
...
)
object |
The ranked assessment data set. |
consensus |
The rank aggregation across tasks (consensus ranking). Only needed for a multi-task data set. |
file |
A string specifying the file name of the report. It allows for specifying the output file path as well,
otherwise the working directory is used. If |
title |
A string specifying the title of the report. |
colors |
The color scheme that is applied to the plots. |
format |
A string specifying the format of the report. The options are "PDF", "HTML" or "Word". |
latex_engine |
A string specifying the LaTeX engine for producing PDF output. The Options are "pdflatex", "lualatex", and "xelatex". |
clean |
A boolean indicating whether intermediate files (e.g. individual plots) should be kept. Using |
fig.format |
A vector of strings containing the file format of the figures that are not removed if |
dpi |
A positive integer specifying the resolution of the generated plot ( |
open |
A boolean specifying whether the report should be opened with the default system viewer after generation. |
... |
Further arguments passed to or from other functions. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.