如何在R中的tableGrob输出表中合并垂直单元格?

时间:2016-09-27 13:48:01

标签: r ggplot2 gridextra r-grid

我有一个类似于这里的问题,其中OP旨在合并表horizontal merging中列的标题。在这里,我希望合并垂直排列的单元组。以下是我在Microsoft Excel软件中设计的目标表: -

enter image description here

我尝试使用horizontal merging

的问题规定的方法制作目标表
library(gridExtra)
library(grid)
library(ggplot2)

alphabets <- c(rep("A", 3), rep("B", 3), rep("C",3))
numbers <- c(rep(c(1,2,3), 3))
sounds <- c('Ayes','Bees','Cees')

df1 <- data.frame(alphabets = alphabets,numbers=numbers)
df2 <- data.frame(sounds = sounds)

tab1 <- tableGrob(df1,theme = ttheme_default(),row=NULL)
tab2 <- tableGrob(df2,theme = ttheme_default(),row=NULL)

halign <- combine(tab2,tab1, along =1)

grid.draw(halign)

这将给我以下输出: -

enter image description here

我现在有一个临时的工作。但如果我合并多个单元格,它将会失败。

sounds <- c('','Ayes','','','Bees','','','Cees','')
df2 <- data.frame(sounds = sounds)
tab2 <- tableGrob(df2,theme = ttheme_default(),row=NULL)
halign <- combine(tab2,tab1, along =1)
grid.draw(halign)

这个输出是: -

enter image description here

我的问题是如何合并两个表格grob对象并保留最终输出的最大表格的长度。

感谢您的努力,答案将极大地有助于我的分析结果的呈现。

干杯

Lune3141

1 个答案:

答案 0 :(得分:1)

为什么不先设置位置,然后将其发送到tableGrob

# Set locations you want to put sounds at
df2$toBind <- c(2, 5, 8)

# Set locations to allow merge
df1$toBind <- 1:nrow(df1)

# Merge them together
toPrint <-
  right_join(df2, df1) %>%
  mutate(sounds = ifelse(is.na(sounds)
                         , ""
                         , as.character(sounds))) %>%
  select(-toBind)

grid.table(toPrint, row = NULL)

生成上面的表格,但需要您手动设置所需的位置。

更大的问题可能是您要在此处完成的内容,以及您不想重复sounds列的原因。根据您的输出目标,您可能希望在LaTeX中查看类似于书签的内容。

对于这种混乱感到抱歉 - 我正在寻找一种更可靠的方法来生成您在问题结束时使用的表格。这似乎是您需要做的,以生成&#34;合并&#34;细胞外观:

halign$layout[halign$layout$t != 1 &
                halign$layout$l == 1, c("t")] <-
  c(2,5,8,2,5,8)

halign$layout[halign$layout$b != 1  &
                halign$layout$l == 1, c("b")] <-
  c(4,7,10,4,7,10)

grid.draw(halign)

这是查找第一列(l == 1)中不是第一行(t != 1b != 1)的所有内容,并将顶部和底部设置为新位置。您需要手动调整位置或以编程方式为您的实际数据(例如,它应匹配多少行,并为其执行算术)。

enter image description here

另外,为了使合并的行更突出,您可能需要考虑在生成tab2 grob时设置不同的背景颜色。 。e.g,:

tab2 <- tableGrob(df2
                  , theme = ttheme_default(core=list(bg_params = list(fill = c("white","darkgrey"), col=NA)) )
                  , rows = NULL)

enter image description here

偶数行的示例:

halign_alt <- combine(tab2,tab3, along =1)

halign_alt$layout[halign_alt$layout$t != 1 &
                    halign_alt$layout$l == 1, c("t")] <-
  c(2,5,7,2,5,7)

halign_alt$layout[halign_alt$layout$b != 1  &
                    halign_alt$layout$l == 1, c("b")] <-
  c(4,6,9,4,6,9)

grid.draw(halign_alt)

enter image description here