我正在尝试使用 cowplot 中的 plot_grid 函数制作一个自定义图,其中第一行有一个树状图,第二行有两个表(彼此相邻)。现在最终发生的是我的树状图和表格被绘制,但在两个单独的 PDF 上。有没有办法让它们都绘制在同一页面上?下面是我的代码片段:
pdf("test.pdf", width = 12, height = 10)
x <-tableGrob(frames[[1]])
y <-tableGrob(frames[[2]])
plot.clus <-plot(test1,label=diseaseDuration,main=label)
tables<-grid.arrange(x,y,nrow=1)
plot_grid(bottom_row,tables)
用于聚类(hclust)的 dput 输出片段:
structure(list(merge = structure(c(-61L, -41L, -49L, 1L, -16L...),
height = c(4.23833720098634e-13, 6.36507320251999e-13.......),
order = c(5L, 57L, 12L, 7L, 66L, 31L, 55L, 6L, 10L, 37L,..),
labels = c("ABC00001", "ABC00002", "ABC00003",......),
method = "ward.D",
call = hclust(d = data, method = "ward.D"), dist.method =
"euclidean"), .Names = c("merge", "height", "order", "labels", "method", "call", "dist.method"), class = "hclust")