有时候将R中的数据直接复制到Word中会很方便。
例如,如果我将以下内容放入R
c(1, 2)
[1] 1 2
当我复制输出并尝试将其粘贴到具有1行2列的Word表中时,它将不起作用,因为输出将仅复制到一个单元格中。
有快速的方法吗?
答案 0 :(得分:0)
您可以使用flextable package在Word中创建MS Office表。
library(flextable)
ft <- flextable(head(iris))
print(ft, preview = 'docx') # this will open a new word file with the table pasted in