华夫饼包:颜色与数据中的零/ 0混合

时间:2016-04-20 08:50:29

标签: r ggplot2 waffle-chart

我的数据中的一个例子:

1 99
85 15
8 92
1 99
10 90
0 100

问题是最后一组数字:当包含0时,华夫饼的行为就像它是100.零似乎被忽略了。有办法防止这种情况吗?

工作:绿色= 10,橙色= 90

waffle(c(10, 90))

enter image description here

不工作:绿色= 0,但其可视化为绿色= 100.每个矩形应为橙色

waffle(c(0, 100))

enter image description here

1 个答案:

答案 0 :(得分:2)

Danke发现并提交问题!固定在0.6.0.9000:

gridExtra::grid.arrange(
  waffle(c(thing1=0, thing2=100), rows=5),  
  waffle(c(thing1=25, thing2=75), rows=5)
)

enter image description here