7

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

箱线图示例

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

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"))

结果是:

我的箱线图

显然,我所拥有的和示例显示的之间存在很多差异,但现在我只专注于从误差条中删除端点,我指的是stat_boxplot函数创建的水平顶部和底部部分。有谁知道我可以获得预期效果的方法?

4

1 回答 1

8

widthgeom中的控制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"))

在此处输入图像描述

于 2016-09-01T15:06:47.793 回答