Skip to contents

Write a self-contained qeviz HTML file

Usage

qe_export_html(
  x,
  file,
  title = NULL,
  graph_opts = list(),
  open = interactive(),
  ...
)

Arguments

x

A qe_plot object, a raw rENA / tma / ona set, or a ModelData list.

file

Output file path (should end in .html).

title

<title> text (defaults to stored title for qe_plot objects).

graph_opts

Named list of <qe-graph> attribute overrides.

open

If TRUE (default when interactive), open after writing.

...

Additional arguments forwarded to qe_extract() when x is a raw set.

Value

The normalised file path, invisibly.

Examples

if (FALSE) { # \dontrun{
qe_export_html(set, "ena_plot.html")
qe_export_html(qe_plot(set) |> qe_group("FirstGame"), "fg.html")
} # }