使用这个小数据集:
df <- structure(list(colour = structure(c(1L, 2L, 1L, 2L), .Label = c("Black",
"White"), class = "factor"), variable = c("A", "A", "B", "B"),
value = c(1, 2, 0.74, 0.85)), row.names = c(NA, -4L), .Names = c("colour",
"variable", "value"), class = "data.frame")
我可以使用ggvis
library(ggvis)
df %>%
ggvis(x=~variable, y=~value, fill=~colour) %>%
group_by(colour) %>%
layer_bars()
但我无法弄清楚如何制作水平堆积的条形图。我想我不知何故应该使用layer_rects
,但到目前为止我能得到的最好的只是一组人物。
df %>%
ggvis(x =~value, y=~variable, fill =~ colour) %>%
group_by(colour) %>%
layer_rects(x2 = 0, height = band())
答案 0 :(得分:6)
这是因为layer_bars()
自动堆叠,layer_rects()
没有。您需要使用compute_stack()
明确表示堆栈。
df %>%
ggvis(y = ~variable, fill = ~colour) %>%
compute_stack(stack_var = ~value, group_var = ~variable) %>%
layer_rects(x = ~stack_lwr_, x2 = ~stack_upr_, height = band())
给出了:
注意:查看此代码,您可能想知道stack_lwr_
和stack_upr_
参数的来源。看看source code,了解它是如何在幕后工作的