避免string打印到控制台被截断(在RStudio中)
我想打印一个长的string到RStudio控制台,以便它不会被截断。
> paste(1:300, letters, collapse=" ") [1] "1 a 2 b 3 c 4 d 5 e 6 f 7 g 8 h 9 i ... 181 y 182 z 183 a 184 b... <truncated>
我认为这应该是相当简单的,但我不知道如何。 我试过了
options(max.print = 10000)
并浏览print
帮助页面上的参数。 仍然没有运气。
什么参数/设置,我必须改变,以实现这一目标?
这是一个RStudio专用function,旨在帮助解决打印过长的string可能导致IDE迟缓的问题。 (我相信它已经添加了最新版本v.99.896)
您可以通过将Limit length of lines displayed in the console to:
的Limit length of lines displayed in the console to:
设置为0来select退出截断:(参见对话框中的最后一个选项):