View source: R/geom-beeswarm.R
geom_beeswarm | R Documentation |
The beeswarm geom is a convenient shortcut for
geom_point(position = "beeswarm")
. It shifts points to avoid
overplotting using the swarmx
function from the beeswarm
package.
geom_beeswarm( mapping = NULL, data = NULL, stat = "identity", ..., method = "swarm", spacing = 1, side = 0L, priority = "ascending", fast = TRUE, dodge.width = NULL, corral = "none", corral.width = 0.2, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE )
mapping |
Set of aesthetic mappings created by |
data |
The data to be displayed in this layer. There are three options: If A A |
stat |
The statistical transformation to use on the data for this layer, as a string. |
... |
Other arguments passed on to |
method |
|
spacing |
|
side |
|
priority |
|
fast |
Use compiled version of algorithm? This option is ignored for all
methods except |
dodge.width |
|
corral |
|
corral.width |
|
na.rm |
If |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
method: specifies the algorithm used to avoid overlapping points. The
default "swarm"
method places points in increasing order. If a point would
overlap with an existing point, it is shifted sideways (along the group axis)
by a minimal amount sufficient to avoid overlap. The "swarm2"
method is very
similar to "swarm"
but more closely follows the method used in the beeswarm
package.
While the "swarm"
and "swarm2"
method places points in a predetermined
order, the "compactswarm"
method uses a greedy strategy to determine which
point will be placed next. This often leads to a more tightly-packed layout.
The strategy is very simple: on each iteration, a point that can be placed as
close as possible to the non-data axis is chosen and placed. If there are two
or more equally good points, priority
is used to break ties.
The other 3 methods first discretise the values along the data axis, in order
to create more efficient packing. The "square"
method places points on a
square grid, whereas "hex"
uses a hexagonal grid. "centre"
/"center"
uses a square grid to produce a symmetric swarm. The number of break points
for discretisation is determined by a combination of the available plotting
area and the spacing
argument.
priority: controls the order in which points are placed, which generally
has a noticeable effect on the plot appearance. "ascending"
gives the
'traditional' beeswarm plot. "descending"
is the opposite. "density"
prioritizes points with higher local density. "random"
places points in a
random order. "none"
places points in the order provided.
corral: By default, swarms from different groups are not prevented from
overlapping, i.e. "corral = "none"
. Thus, datasets that are very large or
unevenly distributed may produce ugly overlapping beeswarms. To control
runaway points one can use the following methods. "gutter"
collects runaway
points along the boundary between groups. "wrap"
implement periodic boundaries.
"random"
places runaway points randomly in the region. "omit"
omits runaway
points.
geom_beeswarm()
understands the following aesthetics (required aesthetics
are in bold):
x
y
alpha
colour
fill
group
shape
size
stroke
Learn more about setting these aesthetics in vignette("ggplot2-specs")
.
position_beeswarm()
for the underlying function to this geom.
geom_quasirandom()
for another method of shifting points to avoid
overplotting.
#
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.