当前位置:  开发笔记 > 编程语言 > 正文

如何添加颜色等于分组变量的多个geom_hlines

如何解决《如何添加颜色等于分组变量的多个geom_hlines》经验,为你挑选了1个好方法。

我创建了一个分组的boxplot,并添加了三个特定geom_hlines的情节.但是,我想将hline颜色设置为fill=factor(Training.Location),而不是尝试使用调色板手动匹配颜色.有没有办法做到这一点?

ggplot(aes(x=factor(CumDes),y=Mn_Handle), data=NH_C) +
    geom_boxplot( aes(fill=factor(Training.Location))) +
    geom_point( aes(color=factor(Training.Location)), 
    position=position_dodge(width=0.75) ) + 
    theme(axis.ticks = element_blank(), axis.text.x = element_blank()) + 
    coord_cartesian(ylim = c(0, 2000)) + 
    geom_hline(yintercept=432, linetype="dashed", lwd=1.2) + 
    geom_hline(yintercept=583, linetype="dashed", lwd=1.2) + 
    geom_hline(yintercept=439, linetype="dashed", lwd=1.2)

aosmith.. 6

对于新的数据集,这是最简单的事情.我不确定你是如何计算你用于水平线的值,但我经常想从原始数据集计算这些值并使用某种聚合函数/包.

以下是帮助页面中的修改示例geom_hline.

使数据集赋予geom_hline,包括水平线的值以及分组变量.

mean_wt = data.frame(cyl = c(4, 6, 8), wt = c(2.28, 3.11, 4.00))

然后使用该分层变量的任何美学,使用该图层的新数据集进行绘图.

ggplot(mtcars, aes(x = factor(vs), wt) ) +
    geom_boxplot(aes(fill = factor(cyl))) +
    geom_point(aes(color = factor(cyl)), position = position_dodge(.75)) +
    geom_hline(data = mean_wt, aes(yintercept = wt, color = factor(cyl)) )

在此输入图像描述



1> aosmith..:

对于新的数据集,这是最简单的事情.我不确定你是如何计算你用于水平线的值,但我经常想从原始数据集计算这些值并使用某种聚合函数/包.

以下是帮助页面中的修改示例geom_hline.

使数据集赋予geom_hline,包括水平线的值以及分组变量.

mean_wt = data.frame(cyl = c(4, 6, 8), wt = c(2.28, 3.11, 4.00))

然后使用该分层变量的任何美学,使用该图层的新数据集进行绘图.

ggplot(mtcars, aes(x = factor(vs), wt) ) +
    geom_boxplot(aes(fill = factor(cyl))) +
    geom_point(aes(color = factor(cyl)), position = position_dodge(.75)) +
    geom_hline(data = mean_wt, aes(yintercept = wt, color = factor(cyl)) )

在此输入图像描述

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有