【发布时间】:2020-04-13 07:49:41
【问题描述】:
我想知道是否有办法拆分 Rstudio 的 Viewer 窗格(例如 Plot 窗格 的 par(mfrow = 2:1))以便我可以显示 2 flextable对象?
library('flextable')
dat1 <- data.frame(Approaches = c("Y", "Y", "N"), Meets = c("N", "Y", "N"), row.names = c("Read", "Math", "Sci."))
dat2 <- data.frame(Read = "Y", Math = "N")
flextable(dat1) # Display this
flextable(dat2) # and Display this
【问题讨论】:
标签: r rstudio flextable officer