标签: r ggplot2 label
有没有办法在这些图中右上角添加q2和q4(分位数)值?
例如
ggplot(iris, aes(x=Sepal.Length, y=Species)) + stat_density_ridges(quantile_lines = TRUE, quantiles = c(0.025, 0.975), alpha = 0.7)
在下面显示此图
我希望的是这样的事情,其中q2,q4值显示在右上角。
任何建议或意见都非常感谢。