When I make a plot using geom_density_ridges()
the top most plot touches the top of the panel. How do I create a little white space there for aesthetic purposes?
library(ggplot2)
library(ggridges)
ggplot(iris, aes(x = Sepal.Length, y = Species)) +
geom_density_ridges()