Return a qeviz plot as an HTML string
qe_html.RdReturn a qeviz plot as an HTML string
Usage
qe_html(x, title = NULL, graph_opts = list(), ...)Arguments
- x
A
qe_plotobject, a raw rENA / tma / ona set, or aModelDatalist fromqe_model_data()/qe_extract().- title
<title>text. Defaults to the title stored in theqe_plotobject when one is supplied.- graph_opts
Named list of
<qe-graph>attribute overrides. Whenxis aqe_plotobject the stored opts are used as the base; keys supplied here take precedence.- ...
Additional arguments forwarded to
qe_extract()whenxis a raw set.
Examples
if (FALSE) { # \dontrun{
writeLines(qe_html(set), "plot.html")
writeLines(qe_html(qe_plot(set) |> qe_group("FirstGame")), "plot.html")
} # }