如何使ggplot2中的可变条宽度不重叠或间隙

时间:2013-12-19 17:47:32

标签: r ggplot2 histogram geom-bar

geom_bar在具有固定宽度条时似乎效果最好 - 根据documentation,即使条形之间的空格似乎也由宽度决定。但是,当您有可变宽度时,它没有像我预期的那样响应,导致不同条形之间出现重叠或间隙(如图here所示)。

要了解我的意思,请尝试这个非常简单的可重复示例:

x <- c("a","b","c")
w <- c(1.2, 1.3, 4) # variable widths
y <- c(9, 10, 6) # variable heights

ggplot() + 
geom_bar(aes(x = x, y = y, width = w, fill=x), 
 stat="identity", position= "stack")

我真正想要的是不同的条形图只是触摸,但不重叠,就像在直方图中一样。

我尝试添加position= "stack""dodge""fill,但都没有效果。解决方案是geom_histogram还是我没有正确使用geom_bar

geom-plot overlap

P.S。要查看差距问题,请尝试使用上述代码中的4替换0.5并查看结果。

2 个答案:

答案 0 :(得分:14)

似乎没有任何直接的解决方案,因此我们应该将{x轴视为连续的w并且手动计算刻度线和条形中心所需的位置(this是有用的):

# pos is an explicit formula for bar centers that we are interested in:
#        last + half(previous_width) + half(current_width)
pos <- 0.5 * (cumsum(w) + cumsum(c(0, w[-length(w)])))
ggplot() + 
  geom_bar(aes(x = pos, width = w, y = y, fill = x), stat = "identity") + 
  scale_x_continuous(labels = x, breaks = pos)

enter image description here

答案 1 :(得分:1)