Manually generate boxplots from an xpdb object.
xplot_boxplot(
xpdb,
mapping = NULL,
type = "bo",
xscale = "discrete",
yscale = "continuous",
orientation = "x",
group = "ID",
title = NULL,
subtitle = NULL,
caption = NULL,
tag = NULL,
plot_name = "boxplot",
gg_theme,
xp_theme,
opt,
quiet,
jitter_seed,
...
)
The desired plot
<xp_xtras
> or <xpose_data
> object
ggplot2
style mapping
See Details.
Defaults to discrete
.
Defaults to continuous
, used as check if orientation
changed.
Defaults to x
Grouping for connecting lines through jitter
Plot title
Plot subtitle
Plot caption
Plot tag
Metadata name of plot
As in xpose
As in xpose
Processing options for fetched data
Silence extra debugging output
A numeric, optional seed to be used in jitters
Any additional aesthetics.
For type-based customization of plots:
b
box-whisker (using default quantiles)
p
points (from geom_dotplot
)
v
violin (from geom_violin
)
o
outliers (show outliers)
l
line through 0 (or as indicated in hline_yintercept
or
yline_xintercept
)
s
smooth line (from geom_smooth
)
j
jitter points (from geom_jitter
)
c
connecting lines for jitter points (from geom_path
)