没有facet_grid的分组叠加条形图ggplot2

时间:2016-09-27 11:31:47

标签: r ggplot2 bar-chart stacked-chart

您好我想使用带有以下数据的ggplot2制作堆积的条形图:

    DF <- read.table(text="Rank   P_Rank    value_Rank     P2_Rank
                             AC      1        250             1
                             AN      1        100             1
                             AT      1        155             1
                             CA      1        90              1
                             CG      2        630             1
                             CN      2        150             1
                             CT      2        384             1
                             GA      2        485             1
                             CA      3        94              1 
                             AT      3        75              1
                             GN      3        163             1
                             GT      3        97              1
                             CA      4        63              2
                             CG      4        16              2
                             CT      4        140             2
                             CG      4        610             2
                             CN      5        46              2
                             CT      5        330             2
                             GA      5        150             2
                             CA      5        67              2 
                             CG      6        130             2
                             CN      6        250             2
                             CT      6        484             2
                             GA      6        185             2", header=TRUE)

ggplot(DF, aes(x = as.factor(P_Rank), y = value_Rank, fill = Rank)) + geom_bar(stat = "identity")

我获得了这个条形图,但我想根据变量“P2_Rank”对堆叠的条形图进行分组。红色是我想要添加的(我不喜欢2个版本的条形图A或B,因为它符合我的需要)。

enter image description here

非常感谢提前!

1 个答案:

答案 0 :(得分:3)

更新。原来我没有仔细阅读你的帖子 - 我只是注意到你在标题中说“没有facet_grid”。无论如何,我打算把它留在这里,但是起见者应该随意取消投票。

您可以尝试分面:

ggplot(DF, 
  aes(x = as.factor(P_Rank), y = value_Rank, fill = Rank)) + 
  geom_bar(stat = "identity") +
  facet_wrap(~ P2_Rank, scales = "free_x", switch = "x") +
  scale_x_discrete("P2_Rank", labels = NULL) +
  theme(strip.background = element_blank(),
        panel.margin = unit(-1, "lines"))

输出: enter image description here