View source: R/geom_rounded_rect.R
geom_rounded_rect | R Documentation |
Does what ggplot2::geom_rect()
does, only curvier. Use the radius
aesthetic
to change the corner radius.
geom_rounded_rect(
mapping = NULL,
data = NULL,
stat = "identity",
position = "identity",
...,
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.
When using a
|
position |
A position adjustment to use on the data for this layer. This
can be used in various ways, including to prevent overplotting and
improving the display. The
|
... |
Other arguments passed on to
|
na.rm |
If |
show.legend |
logical. Should this layer be included in the legends?
|
inherit.aes |
If |
geom_rect()
and geom_tile()
's respond differently to scale
transformations due to their parameterisation. In geom_rect()
, the scale
transformation is applied to the corners of the rectangles. In geom_tile()
,
the transformation is applied only to the centres and its size is determined
after transformation.
geom_tile()
understands the following aesthetics (required aesthetics are in bold):
x
y
alpha
colour
fill
group
height
linetype
linewidth
width
Note that geom_raster()
ignores colour
.
Learn more about setting these aesthetics in vignette("ggplot2-specs")
.
library(ggplot2)
df <- data.frame(
x = rep(c(2, 5, 7, 9, 12), 2),
y = rep(c(1, 2), each = 5),
z = factor(rep(1:5, each = 2)),
w = rep(diff(c(0, 4, 6, 8, 10, 14)), 2)
)
ggplot(df) +
geom_rounded_rect(
aes(
xmin = x - w / 2,
xmax = x + w / 2,
ymin = y,
ymax = y + 1,
radius = .5,
fill = z
),
colour = "white"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.