Skip to contents

Returns a qe_plot object that can be customised with chained qe_*() functions and rendered by printing, qe_export_html(), or qe_html().

Usage

qe_plot(x, title = "qeviz", width = "100%", height = 440, ...)

Arguments

x

Either a raw rENA / tma / ona set object or a ModelData list from qe_model_data() / qe_extract().

title

Window / tab title used when the plot is saved or opened.

width

CSS width string. Default "100%".

height

Plot height in pixels (numeric) or any CSS string. Default 440.

...

Additional arguments forwarded to qe_extract() when x is a raw set (e.g. group_col = "Condition"). Directionality is detected automatically from the set class and rarely needs to be overridden.

Value

An object of class qe_plot.

Details

width and height set the plot dimensions and can be supplied here rather than in a separate sizing call.

Examples

if (FALSE) { # \dontrun{
qe_plot(set)
qe_plot(set, height = 600) |> qe_group("FirstGame")
} # }