stat_summary 的 ggplot2 图例
我如何创建一个图例,告知红十字是平均值?
ggplot(results, aes(x=factor, y=proportionPositive)) +
geom_boxplot() +
stat_summary(fun.data = "mean_cl_normal", colour = "red", shape=4)
How can I create a legend informing that the red cross is the mean?
ggplot(results, aes(x=factor, y=proportionPositive)) +
geom_boxplot() +
stat_summary(fun.data = "mean_cl_normal", colour = "red", shape=4)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一种方法:
Here is one way of doing it:
对我来说,选项“show.legend=TRUE”确实有效:
for me option "show.legend=TRUE" simply did work out:
要使其看起来像默认图例(借用 @Andrie 代码):
To make it appear like a default legend (borrowing from @Andrie code):