更改 ggridges 中的线条颜色

change line color in ggridges

如何更改 ggridge 密度图中的线条颜色或形状?

ggplot(iris, aes(x = Sepal.Length, y = Species)) +
  geom_density_ridges2() +
  scale_y_discrete(expand = c(0.01, 0)) +
  scale_x_continuous(expand = c(0.01, 0)) +
  theme_ridges()

我不确定您到底想要什么,但是可以通过在 geom_density_ridges2 函数中使用 color 来更改线条的颜色,如下所示:

library(tidyverse)
library(ggridges)
ggplot(iris, aes(x = Sepal.Length, y = Species)) +
  geom_density_ridges2(color = "red") +
  scale_y_discrete(expand = c(0.01, 0)) +
  scale_x_continuous(expand = c(0.01, 0)) +
  theme_ridges()

输出:

如您所见,线条的颜色已更改为红色。