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
?
P.S。要查看差距问题,请尝试使用上述代码中的4
替换0.5
并查看结果。
答案 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)
答案 1 :(得分:1)
您现在可以使用mekko
包执行此操作:https://cran.r-project.org/web/packages/mekko/vignettes/mekko-vignette.html