Plots the sum of the y
and height
aesthetics versus x
, filling the area between y
and y + height
with a color.
Thus, the data mapped onto y and onto height must be in the same units.
If you want relative scaling of the heights, you can use geom_density_ridges
with stat = "identity"
.
geom_ridgeline(mapping = NULL, data = NULL, stat = "identity",
position = "identity", na.rm = FALSE, show.legend = NA,
inherit.aes = TRUE, ...)
The data to be displayed in this layer. There are three options:
If NULL
, the default, the data is inherited from the plot
data as specified in the call to ggplot()
.
A data.frame
, or other object, will override the plot
data.
A function
will be called with a single argument,
the plot data. The return value must be a data.frame.
, and
will be used as the layer data.
The statistical transformation to use on the data for this layer, as a string.
Position adjustment, either as a string, or the result of a call to a position adjustment function.
If FALSE
, the default, missing values are removed with
a warning. If TRUE
, missing values are silently removed.
logical. Should this layer be included in the legends?
NA
, the default, includes if any aesthetics are mapped.
FALSE
never includes, and TRUE
always includes.
If FALSE
, overrides the default aesthetics,
rather than combining with them.
other arguments passed on to layer()
. These are
often aesthetics, used to set an aesthetic to a fixed value, like
color = "red"
or size = 3
. They may also be parameters
to the paired geom/stat.
Required aesthetics are in bold.
x
y
height
Height of the ridgeline, measured from the respective y
value. Assumed to be positive, though this is not required.
group
Defines the grouping. Required when the dataset contains multiple distinct ridgelines. Will typically be the same
variable as is mapped to y
.
scale
A scaling factor to scale the height of the ridgelines.
A value of 1 indicates that the heights are taken as is. This aesthetic can be used to convert
height
units into y
units.
min_height
A height cutoff on the drawn ridgelines. All values that fall below this cutoff will be removed.
The main purpose of this cutoff is to remove long tails right at the baseline level, but other uses are possible.
The cutoff is applied before any height
scaling is applied via the scale
aesthetic. Default is 0, so negative values are removed.
color
Color of the ridgeline
fill
Fill color of the area under the ridgeline
alpha
Transparency level of color
and fill
group
Grouping, to draw multiple ridgelines from one dataset
linetype
Linetype of the ridgeline
size
Line thickness
point_shape
, point_color
, point_size
, point_fill
, point_alpha
, point_stroke
Aesthetics applied
to points drawn in addition to ridgelines.
In addition to drawing ridgelines, this geom can also draw points if they are provided as part of the dataset.
The stat stat_density_ridges()
takes advantage of this option to generate ridgeline plots with overlaid
jittered points.
# NOT RUN {
library(ggplot2)
d <- data.frame(x = rep(1:5, 3), y = c(rep(0, 5), rep(1, 5), rep(3, 5)),
height = c(0, 1, 3, 4, 0, 1, 2, 3, 5, 4, 0, 5, 4, 4, 1))
ggplot(d, aes(x, y, height = height, group = y)) + geom_ridgeline(fill="lightblue")
# }
Run the code above in your browser using DataLab