分组条形图中的堆积条形图

时间:2012-11-21 04:46:10

标签: r ggplot2

我有以下图表

test <- expand.grid('cat' = LETTERS[1:5], 'cond'= c(F,T), 'year' = 2001:2005)
test$value <- floor((rnorm(nrow(test)))*100)
test$value[test$value < 0] <- 0

ggplot() +
  geom_bar(data=test, aes(y = value, x = year, fill = cat), stat="identity",position='dodge') +
  theme_bw()

test 我需要将每个'猫'除以'cond'(真或假)。我该怎么做?

1 个答案:

答案 0 :(得分:20)

您可以将cat放在x轴上,并将facet_gridyear一起使用:

ggplot() +
  geom_bar(data=test, aes(y = value, x = cat, fill = cond), stat="identity",
           position='stack') +
  theme_bw() + 
  facet_grid( ~ year)

enter image description here