View source: R/xplot_boxplot.R
xplot_boxplot | R Documentation |
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,
...
)
xpdb |
< |
mapping |
|
type |
See Details. |
xscale |
Defaults to |
yscale |
Defaults to |
orientation |
Defaults to |
group |
Grouping for connecting lines through jitter |
title |
Plot title |
subtitle |
Plot subtitle |
caption |
Plot caption |
tag |
Plot tag |
plot_name |
Metadata name of plot |
gg_theme |
As in |
xp_theme |
As in |
opt |
Processing options for fetched data |
quiet |
Silence extra debugging output |
jitter_seed |
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
)
The desired plot
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.