我可以使用此代码绘制 density_ridge 。我想在不改变当前设计的情况下在百分位数 0.50 处添加 geom_point。任何帮助将非常感激。
library(ggplot2)
library(ggridges)
ggplot(iris, aes(x=Sepal.Length, y=Species, fill = factor(stat(quantile)))) +
stat_density_ridges(
geom = "density_ridges_gradient", calc_ecdf = TRUE,
quantiles = 4, quantile_lines = TRUE
)