如何使用 r tableGrob 写入大量数据
How to write huge rows of data using r tableGrob
如何使用 tableGrob in r 将超过 1000 行的数据写入 table 中的网格视图端口。
如果你有足够的时间,它工作得很好
library(grid)
library(gridExtra)
pdf("y.pdf", height=22, width=0.05)
grid.table(sample(letters, size = 1001, TRUE), theme=ttheme_minimal(2, padding = unit(c(0,0),"mm")))
dev.off()
enter image description here
如何使用 tableGrob in r 将超过 1000 行的数据写入 table 中的网格视图端口。
如果你有足够的时间,它工作得很好
library(grid)
library(gridExtra)
pdf("y.pdf", height=22, width=0.05)
grid.table(sample(letters, size = 1001, TRUE), theme=ttheme_minimal(2, padding = unit(c(0,0),"mm")))
dev.off()
enter image description here