R:将格式化的数据框(带有自动换行)导出为PDF **不带** Rmarkdown

时间:2018-09-10 18:58:49

标签: r pdf textwrapping rscript

我正在尝试将数据框导出为pdf文件。我的数据框包含一列很长的文本注释,因此我想将文本包装在将在.pdf内生成的表中。我已经尝试过使用grid.table和pdf函数创建表,但是没有看到任何用于换行的选项。当我查找如何格式化表格时,所有结果似乎都在谈论RMarkdown。我的脚本必须位于.R文件中,因此无法将其编成.pdf。

x <- data.frame("Question" = c("Comment1", "Comment2"), "Text"=c("This is one comments that's really long and I'd like the
                                                             width of the row to reflect that. I'd like it to wrap the text
                                                             so it is not cut off", "This is another comment that's really long and
                                                             gets cut off if I try to export to .pdf"))

上面是我想导出到.pdf的数据框的示例,它使用自动换行功能控制行的宽度,而不截断注释。

这可能吗?

谢谢!

最好, 凯莉

0 个答案:

没有答案