Create a qeviz plot object
qe_plot.RdReturns a qe_plot object that can be customised with chained qe_*()
functions and rendered by printing, qe_export_html(), or qe_html().
Arguments
- x
Either a raw rENA / tma / ona set object or a
ModelDatalist fromqe_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()whenxis a raw set (e.g.group_col = "Condition"). Directionality is detected automatically from the set class and rarely needs to be overridden.
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")
} # }