从ggplot2中的错误栏中删除端点

时间:2016-09-01 14:47:55

标签: r ggplot2 boxplot errorbar

我的目标是在R中创建箱图(不一定是ggplot2,但这就是我现在正在使用的),这与我在某处找到的这个示例(减去文本)风格相似:

boxplot-example

这是我到目前为止的代码:

dat <- read.table(file = "https://www.dropbox.com/s/b59b03rc8erea5d/dat.txt?dl=1", header = TRUE, sep = " ")
library(ggplot2)
p <- ggplot(dat, aes(x = Subscale, y = Score, fill = Class))
p + stat_boxplot(geom = "errorbar", width = 1.2, size = 2.5, color = "#0077B3") +
  geom_boxplot(outlier.shape = NA, coef = 0, position = position_dodge(.9)) +
  scale_fill_manual(values = c("#66CCFF", "#E6E6E6")) +
  theme(panel.background = element_rect(fill = "white", color = "white"))

结果是:

my-boxplot

显然,我所拥有的和示例所显示的内容之间存在很多差异,但是现在我只专注于从错误栏中删除端点,我指的是由水平顶部和底部部分创建的stat_boxplot功能。有谁知道我能达到预期效果的方法吗?

1 个答案:

答案 0 :(得分:6)

width geom中的errorbar控制水平结束条的宽度,因此将其设置为0以删除结束条。您错过了stat_boxplot图层中的闪避,因此您可以将其添加到正确的方法中。

ggplot(dat, aes(x = Subscale, y = Score, fill = Class)) +
    stat_boxplot(geom = "errorbar", width = 0, size = 2.5, 
               color = "#0077B3", position = position_dodge(.9)) +
    geom_boxplot(outlier.shape = NA, coef = 0, position = position_dodge(.9)) +
    scale_fill_manual(values = c("#66CCFF", "#E6E6E6")) +
    theme(panel.background = element_rect(fill = "white", color = "white"))

enter image description here