View source: R/boxviolinplot.R
| BoxViolinPlotAtomic | R Documentation |
Core implementation for drawing box plots, violin plots, bar plots (mean
± error bars), or beeswarm plots. This is the workhorse behind
BoxPlot, ViolinPlot, and
BeeswarmPlot — it takes a single data frame (no
split_by support) and returns a ggplot object.
The base parameter selects the primary geometry:
"box" — geom_boxplot()
"violin" — geom_violin()
"bar" — stat_summary(fun = mean, geom = "col")
with optional error bars (SEM, SD, or CI).
"none" — no primary geometry (used by
BeeswarmPlot to draw beeswarm points alone).
BoxViolinPlotAtomic(
data,
x,
x_sep = "_",
y = NULL,
base = c("box", "violin", "bar", "none"),
in_form = c("long", "wide"),
sort_x = NULL,
flip = FALSE,
keep_empty = FALSE,
keep_na = FALSE,
group_by = NULL,
group_by_sep = "_",
group_name = NULL,
paired_by = NULL,
x_text_angle = ifelse(isTRUE(flip), 0, 45),
step_increase = 0.1,
position_dodge_preserve = "total",
fill_mode = ifelse(!is.null(group_by), "dodge", "x"),
palreverse = FALSE,
symnum_args = NULL,
theme = "theme_this",
theme_args = list(),
palette = "Paired",
palcolor = NULL,
alpha = 1,
aspect.ratio = NULL,
legend.position = "right",
legend.direction = "vertical",
add_point = FALSE,
pt_color = if (isTRUE(add_beeswarm)) NULL else "grey30",
pt_size = NULL,
pt_alpha = 1,
y_nbreaks = 4,
jitter_width = NULL,
jitter_height = 0,
stack = FALSE,
y_max = NULL,
y_min = NULL,
y_trans = "identity",
y_brackets = NULL,
add_beeswarm = FALSE,
beeswarm_method = "swarm",
beeswarm_cex = 1,
beeswarm_priority = "ascending",
beeswarm_dodge = 0.9,
add_box = FALSE,
box_color = "black",
box_width = 0.1,
box_ptsize = 2.5,
add_errorbar = "SEM",
errorbar_color = "grey20",
errorbar_width = 0.4,
errorbar_linewidth = 0.6,
add_trend = FALSE,
trend_color = NULL,
trend_linewidth = 1,
trend_ptsize = 2,
add_stat = NULL,
stat_name = NULL,
stat_color = "black",
stat_size = 1,
stat_stroke = 1,
stat_shape = 25,
add_bg = FALSE,
bg_palette = "stripe",
bg_palcolor = NULL,
bg_alpha = 0.2,
add_line = NULL,
line_color = "red2",
line_width = 0.6,
line_type = 2,
highlight = NULL,
highlight_color = "red2",
highlight_size = 1,
highlight_alpha = 1,
comparisons = NULL,
ref_group = NULL,
pairwise_method = "wilcox.test",
multiplegroup_comparisons = FALSE,
multiple_method = "kruskal.test",
sig_label = "p.format",
sig_labelsize = 3.5,
hide_ns = FALSE,
facet_by = NULL,
facet_scales = "fixed",
facet_ncol = NULL,
facet_nrow = NULL,
facet_byrow = TRUE,
title = NULL,
subtitle = NULL,
xlab = NULL,
ylab = NULL,
seed = 8525,
...
)
data |
A data frame. |
x |
A character string of column name(s) for the x-axis.
Character/factor columns are expected. Multiple columns are
concatenated with |
x_sep |
A character string to join multiple |
y |
A character string of the numeric column for the y-axis.
Not required when |
base |
A character string specifying the primary plot type:
|
in_form |
A character string: |
sort_x |
An R expression string (e.g., |
flip |
Logical; if |
keep_empty |
One of FALSE, TRUE and "level". It can also take a named list to specify
different behavior for different columns. Without a named list, the behavior applies to the
categorical/character columns used on the plot, for example, the
|
keep_na |
A logical value or a character to replace the NA values in the data.
It can also take a named list to specify different behavior for different columns.
If TRUE or NA, NA values will be replaced with NA.
If FALSE, NA values will be removed from the data before plotting.
If a character string is provided, NA values will be replaced with the provided string.
If a named vector/list is provided, the names should be the column names to apply the behavior to,
and the values should be one of TRUE, FALSE, or a character string.
Without a named vector/list, the behavior applies to categorical/character columns used on the plot,
for example, the |
group_by |
A character vector of column name(s) to dodge the
boxes/violins by. Multiple columns are concatenated with
|
group_by_sep |
A character string to separate concatenated
|
group_name |
A character string for the dodge legend title. |
paired_by |
A character string naming a column that identifies
paired observations. Forces |
x_text_angle |
A numeric value specifying the angle of the x-axis text. |
step_increase |
Fractional step increase for stacking significance brackets when multiple comparisons exist. |
position_dodge_preserve |
Passed to
|
fill_mode |
A character string controlling fill colour mapping:
|
palreverse |
A logical value indicating whether to reverse the palette. Default is FALSE. |
symnum_args |
A list of arguments passed to
|
theme |
A character string or a theme class (i.e. ggplot2::theme_classic) specifying the theme to use. Default is "theme_this". |
theme_args |
A list of arguments to pass to the theme function. |
palette |
A character string specifying the palette to use.
A named list or vector can be used to specify the palettes for different |
palcolor |
A character string specifying the color to use in the palette.
A named list can be used to specify the colors for different |
alpha |
A numeric value specifying the transparency of the plot. |
aspect.ratio |
A numeric value specifying the aspect ratio of the plot. |
legend.position |
A character string specifying the position of the legend.
if |
legend.direction |
A character string specifying the direction of the legend. |
add_point |
Logical; add jittered or beeswarm points to the plot. |
pt_color |
Colour of the points. When |
pt_size |
Numeric size of the points. Default computed from
data size: |
pt_alpha |
Numeric transparency of the points. |
y_nbreaks |
Integer number of y-axis breaks. |
jitter_width |
Numeric width of the jitter. Defaults to
|
jitter_height |
Numeric height of the jitter. Default |
stack |
Logical; stack facetted panels in a compact layout with shared strip labels. |
y_max, y_min |
Numeric y-axis limits, or quantile notation strings
(e.g., |
y_trans |
A character string for y-axis transformation
(e.g., |
y_brackets |
Numeric y-axis position for significance brackets (or p-value labels for multiple comparisons). If NULL, the brackets are placed above the maximum y-value. |
add_beeswarm |
Logical; use |
beeswarm_method |
Beeswarm layout method: |
beeswarm_cex |
Numeric scaling for point spacing. Larger values spread points more. |
beeswarm_priority |
Point layout priority: |
beeswarm_dodge |
Numeric dodge width for beeswarm points when
|
add_box |
Logical; overlay a box plot on the primary geometry.
Mutually exclusive with |
box_color |
Colour of the overlaid box plot outline and fill. |
box_width |
Width of the overlaid box plot. |
box_ptsize |
Size of the median point in the overlaid box plot. |
add_errorbar |
Type of error bars for bar plots ( |
errorbar_color |
Colour of the error bar lines and caps. |
errorbar_width |
Width of the error bar caps. |
errorbar_linewidth |
Line width of the error bars. |
add_trend |
Logical; add trend lines connecting group medians. |
trend_color |
Colour of the trend line. When |
trend_linewidth |
Width of the trend line. |
trend_ptsize |
Size of the trend line points. |
add_stat |
A summary function (e.g., |
stat_name |
Legend title for the stat summary shape. |
stat_color |
Colour of the stat summary point. |
stat_size |
Size of the stat summary point. |
stat_stroke |
Stroke width of the stat summary point. |
stat_shape |
Shape (an integer) for the stat summary point. Uses
|
add_bg |
Logical; add alternating background stripes. |
bg_palette |
Palette for the background stripes. |
bg_palcolor |
Custom colours for the background stripes. |
bg_alpha |
Alpha transparency for the background stripes. |
add_line |
A numeric y-intercept for a horizontal reference line. |
line_color |
Colour of the reference line. |
line_width |
Width of the reference line. |
line_type |
Linetype of the reference line. |
highlight |
A specification of points to highlight: |
highlight_color |
Colour of highlighted points. |
highlight_size |
Size of highlighted points. |
highlight_alpha |
Alpha of highlighted points. |
comparisons |
A logical value ( |
ref_group |
A character string specifying the reference group for comparisons. |
pairwise_method |
Method for pairwise tests. Default
|
multiplegroup_comparisons |
Logical; perform an omnibus test (e.g., Kruskal-Wallis) across all groups. |
multiple_method |
Method for the omnibus test. Default
|
sig_label |
Label format for significance annotations. For
pairwise comparisons: |
sig_labelsize |
Size of the significance label text. |
hide_ns |
Logical; hide non-significant comparison labels. |
facet_by |
A character string specifying the column name of the data frame to facet the plot.
Otherwise, the data will be split by |
facet_scales |
Whether to scale the axes of facets. Default is "fixed"
Other options are "free", "free_x", "free_y". See |
facet_ncol |
A numeric value specifying the number of columns in the facet. When facet_by is a single column and facet_wrap is used. |
facet_nrow |
A numeric value specifying the number of rows in the facet. When facet_by is a single column and facet_wrap is used. |
facet_byrow |
A logical value indicating whether to fill the plots by row. Default is TRUE. |
title |
A character string specifying the title of the plot. A function can be used to generate the title based on the default title. This is useful when split_by is used and the title needs to be dynamic. |
subtitle |
A character string specifying the subtitle of the plot. |
xlab |
A character string specifying the x-axis label. |
ylab |
A character string specifying the y-axis label. |
seed |
The random seed to use. Default is 8525. |
... |
Additional arguments. |
A ggplot object, possibly faceted, with height
and width attributes (in inches) attached.
Wide-to-long conversion — when in_form = "wide",
data is pivoted via tidyr::pivot_longer(). The
keep_na / keep_empty lists are filtered to the new
column names.
Column resolution — x, y, group_by,
facet_by, and paired_by are validated via
check_columns.
NA / empty-level handling — per-column
keep_empty settings are extracted for x,
group_by, and facet_by independently.
Beeswarm validation — if add_beeswarm = TRUE,
the ggbeeswarm package is required. Beeswarm is disabled
(with a warning) when paired_by is provided.
Paired data validation — structural checks ensure each
(x, paired_by) combination has exactly 2
observations (one per group when group_by is present).
Paired observations force add_point = TRUE.
Summary statistics — .y_mean and
.y_median are pre-computed per (x, group_by,
facet_by) for use in trend lines and fill modes.
y-axis limits — y_max / y_min accept
numeric values or quantile notation ("q95",
"q5"). For bar plots, the limit is extended upward by
the error bar extent.
Highlight — highlight can be TRUE (all
points), a numeric index vector, a logical expression string, or
a character vector of row names.
sort_x — an R expression string (e.g.,
"mean(y)") evaluated per x-level to reorder categories.
Flip transformation — when flip = TRUE, factor
levels are reversed and aspect.ratio is inverted.
Base geometry — the primary geom is added:
geom_boxplot(), geom_violin(), or
stat_summary(fun = mean, geom = "col"). Error bars
(SEM / SD / CI) are layered on bar plots via a custom
stat_summary(fun.data = ...).
Fill mode — fill_mode controls colour mapping:
"dodge" — fill by group_by (discrete).
"x" — fill by x-axis categories (discrete).
"mean" / "median" — fill by pre-computed
mean/median (continuous gradient).
Box overlay — when add_box = TRUE on a non-box
base, a box plot is overlaid via ggnewscale::new_scale_fill()
with a white fill/black outline.
Statistical comparisons — two pathways:
Pairwise (comparisons) — uses
ggpubr::geom_pwc() with automatic or explicit
comparison pairs. Data is preprocessed to avoid test
failures from zero-variance or all-NA groups.
Multiple-group (multiplegroup_comparisons)
— uses ggpubr::stat_compare_means() for omnibus
tests (e.g., Kruskal-Wallis).
After comparison layers are added, y_max_use is expanded to
accommodate significance brackets.
Points — jittered points (geom_point() with
position_jitterdodge) or beeswarm points
(ggbeeswarm::geom_beeswarm()). Paired observations
add connecting lines (geom_line()) between matched
subjects.
Trend lines — stat_summary(fun = first) draws
lines connecting group medians. When trend_color is
NULL and group_by is present, lines are coloured
per group.
Reference lines — geom_hline() at the specified
y-intercept.
Stat summary points — a custom stat_summary()
point layer displaying a user-specified summary statistic
(e.g., mean) with a shape legend entry.
Stack layout — when stack = TRUE, facets are
arranged with shared strip labels and negative panel spacing for
a compact stacked appearance.
Dimension calculation — calculate_plot_dimensions()
accounts for the number of x-levels × dodge groups, flip state,
and stack layout adjustments. Minimum dimensions are enforced
from label character widths.
Faceting — facet_plot() wraps the result
with the appropriate strip position based on flip/stack state.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.