R geom_bar facet_grid垂直而不是水平

时间:2018-06-10 08:45:37

标签: r ggplot2 geom-bar facet-grid

我正在尝试制作相同的图像但不是水平的每一个" propuesta",我希望它们是垂直的。首先是" Propuesta A",在它下面" Propuesta B"以及在这最后一个" Propuesta C",好像每一个都是一个单独的图,但是在一起。我有以下代码和输出:

ggplot(articles_europaoccidental_sex_count_unique_group, aes(Country, percentage, fill = Gender)) + 
+     geom_bar(stat = "identity", position = "dodge") + 
+     facet_grid(~Propuesta) + geom_text(aes(label = round(percentage, 2)), position = position_dodge(width = 0.9), vjust = -1)

enter image description here 谢谢!

1 个答案:

答案 0 :(得分:0)

正如理查德·特尔福德所说,只要对我的代码进行最小程度的更改就可以了。

新代码

ggplot(articles_europaoccidental_sex_count_unique_group, aes(Country, percentage, fill = Gender)) + 
  geom_bar(stat = "identity", position = "dodge") + 
  facet_wrap(~Propuesta, ncol = 1)

enter image description here

唯一的变化是facet_grid(~Propuesta)facet_wrap(~Propuesta, ncol = 1)