Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
具体来说,我正在尝试使用 dput() 创建一个具有 [1376,6] 维度的 data.frame 的可重现示例,但输出窗口中的空间不足,无法复制和粘贴结果。
有没有办法增加输出窗口的缓冲区大小或者有人可以在这里提出一种替代方法吗?
谢谢
巴里
您始终可以将结果写入dput文件:
dput
dput(rnorm(20), 'test.txt')
详情请参阅?dput。
?dput