在ggplot2中定位水平箱图

时间:2012-09-27 17:11:19

标签: r ggplot2 boxplot

我正在尝试用ggplot2中的水平箱图制作一个情节,你只能通过使用coord_flip()来完成。我也试图将箱形图垂直放置以将某些组合在一起。我已经读过这种方法推荐使用faceting,但这与coord_flip()不兼容,我们可以在这里看到:ggplot2: boxplot with facet_grid and free scale。所以我想知道是否可以使用空白级别来创建空格。这是我到目前为止所做的事情:

d <- diamonds
library("ggplot2")
levels(d$cut) <- list(A="Fair", B="Good", "-", C="Very Good", D="Ideal", E="Premium")
p = ggplot(d, aes(x=cut, y=depth))
p + 
    geom_boxplot(color="black", size=0.2) + 
    theme_bw() + 
    scale_x_discrete(breaks = c("A", "B", "-", "C", "D", "E"), drop=FALSE) +
    coord_flip()

ph = 2.75
pw = 4
ggsave("plot.png", height=ph, width=pw)

正如您所看到的,如果我在其中创建一个带有“ - ”的空白级别并将其包含在scale_x_discrete()中,那么我会得到一个空白行。问题是我只能添加一个空格。有没有人对如何在这些水平箱形图之间添加空格有任何想法?

1 个答案:

答案 0 :(得分:7)

以下是一种可以添加更多空白级别的方法:

d <- diamonds
levels(d$cut) <- list(A="Fair", B="Good", " "="space1", C="Very Good", D="Ideal", "  "="space2", E="Premium")
ggplot(d, aes(x=cut, y=depth)) +
  geom_boxplot(color="black", size=0.2) + 
  theme_bw() + 
  scale_x_discrete(breaks = c("A", "B", " ", "C", "D", "  ", "E"), drop=FALSE) +
  coord_flip()

这也会在垫片上留下刻度线,但是:

plot with tick marks

通过添加以下内容来删除所有标记很简单:

+ theme(axis.ticks.y = element_line(linetype=0))

plot without tick marks

但是如果你只想删除间隔符的刻度线,至少有一种方法(我确定还有其他方法)是用自定义函数来做的:

f <- function(x) {
  x[!x %in% c("A", "B", "C", "D", "E")] <- NA
  x
}

ggplot(d, aes(x=cut, y=depth)) +
  geom_boxplot(color="black", size=0.2) + 
  theme_bw() + 
  scale_x_discrete(breaks=f, drop=FALSE) +
  coord_flip()

plot with some tick marks