ggplot2:在分面条形图中删除未使用的因子,但在构面之间没有不同的条宽

时间:2012-07-02 21:57:55

标签: r ggplot2

df <- structure(list(ID = structure(c(1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 
2L, 2L, 2L, 3L, 3L, 3L, 3L, 3L, 3L, 4L, 4L, 4L, 4L, 4L, 4L, 5L, 
5L, 5L, 5L, 5L, 5L, 6L, 6L, 6L, 6L, 6L, 6L, 7L, 7L, 7L), .Label = c("1", 
"2", "3", "4", "5", "6", "7"), class = "factor"), TYPE = structure(c(1L, 
2L, 3L, 4L, 5L, 1L, 2L, 3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L, 5L, 6L, 
1L, 2L, 3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L, 5L, 6L, 1L, 2L, 3L, 4L, 
5L, 6L, 1L, 2L, 3L), .Label = c("1", "2", "3", "4", "5", "6", 
"7", "8"), class = "factor"), TIME = structure(c(2L, 2L, 2L, 
2L, 2L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 
2L, 2L, 2L, 2L, 1L, 1L, 1L, 1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 
1L, 1L, 1L), .Label = c("1", "5", "15"), class = "factor"), VAL = c(0.937377670081332, 
0.522220720537007, 0.278690102742985, 0.967633064137772, 0.116124767344445, 
0.0544306698720902, 0.470229141646996, 0.62017166428268, 0.195459847105667, 
0.732876230962574, 0.996336271753535, 0.983087373664603, 0.666449476964772, 
0.291554537601769, 0.167933790013194, 0.860138458199799, 0.172361251665279, 
0.833266809117049, 0.620465772924945, 0.786503327777609, 0.761877260869369, 
0.425386636285111, 0.612077651312575, 0.178726130630821, 0.528709076810628, 
0.492527724476531, 0.472576208412647, 0.0702785139437765, 0.696220921119675, 
0.230852259788662, 0.359884874196723, 0.518227979075164, 0.259466265095398, 
0.149970305617899, 0.00682218233123422, 0.463400925742462, 0.924704828299582, 
0.229068386601284)), .Names = c("ID", "TYPE", "TIME", "VAL"), row.names = c(NA, 
-38L), class = "data.frame")

如果我创建以下图:

ggplot(df, aes(x=ID, y=VAL, fill=TYPE)) +
  facet_wrap(~ TIME, ncol=1) +
  geom_bar(position="stack") +
  coord_flip()

plot

然后我决定理想的是,我希望在没有任何数据的方面显示任何因素。我已经引用了各种问题和答案,表示scale="free"方法是可行的方式(与drop=TRUE相反,后者将删除与TIME中未使用的值对应的空面),所以下一步:

ggplot(df, aes(x=ID, y=VAL, fill=TYPE)) +
  facet_wrap(~TIME, ncol=1, scale="free") +
  geom_bar(position="stack") +
  coord_flip()

plot

我的问题是如何防止对于具有4个小节的小平面与具有3个小节的小平面发生的小节的重新缩放。在这个人为的例子中效果是微妙的,更糟糕​​的是我的实际数据。理想的输出将具有垂直轴上ID因子1,4和6的底面,其中条形与顶面具有相同的宽度,因此小平面的整体垂直尺寸将减小。

奖励积分如果您可以帮助我解决为什么计数堆积而不是数值(现在修复)

Bounty更新:

正如我在后续工作question中所提到的,看起来更好的解决方案可能涉及使用ggplot_buildggplot_table并修改gtable对象。我很确定我能算出时间,但我希望赏金可能会激励别人帮助我。 Koshke发布了一些this的例子。

3 个答案:

答案 0 :(得分:15)

这个怎么样:

df$w <- 0.9
df$w[df$TIME == 5] <- 0.9 * 3/4
ggplot(df, aes(x=ID, y=VAL, fill=TYPE)) +
   facet_wrap(~TIME, ncol=1, scale="free") +
   geom_bar(position="stack",aes(width = w),stat = "identity") +
   coord_flip()

enter image description here

不确定我是否在那里得到算术,但你明白了。

答案 1 :(得分:11)

如果您对垂直条纹没问题,那么facet_grid可以完美运行:

ggplot(df, aes(x=ID, y=VAL, fill=TYPE)) +
  facet_grid(.~TIME, scale="free_x", space = "free_x") +
  geom_bar(position="stack")

enter image description here

为了更进一步,您可以旋转图表的所有元素。如果你将头转过90°,你就拥有了你想要的东西: - )

ggplot(df, aes(x=ID, y=VAL, fill=TYPE)) +
  facet_grid(.~TIME, scale="free_x", space = "free_x") +
  geom_bar(position="stack") +
  opts(legend.text = theme_text(angle=90),
       legend.title = theme_text(angle=90),
       strip.text.x = theme_text(angle=90),
       axis.text.x = theme_text(angle=90),
       axis.text.y = theme_text(angle=90),
       axis.title.x = theme_text(angle=90)
       )

enter image description here

答案 2 :(得分:5)

自最初问题起五年多以来,所以认为它应该提供更新,更清洁的版本。这大致遵循这里给出的建议:http://ggplot2.tidyverse.org/reference/facet_grid.html

两个关键参数是space="free_y",它允许每个面板的高度与刻度的长度成正比,scales="free_y"允许每个列的刻度变化。

coord_flip()允许水平绘制条形图,并且作为个人偏好,方面的标签在theme选项内旋转。

ggplot(df, aes(x=ID, y=VAL, fill=TYPE)) +
  geom_bar(stat="identity") +
  coord_flip() +
  facet_grid(TIME~., scales = "free_y", space = "free_y") +
  theme(strip.text.y = element_text(angle = 0))

enter image description here