我正在使用R中的Graph
包对5461个项目进行最大类分析。
我得到的最后一个输出项很长,因此我收到以下警告:
到达
getOption("max.print")
--省略了475569行
有人能告诉我如何提高max.print
的限制吗?
发布于 2011-07-20 07:58:58
使用options
命令,例如options(max.print=1000000)
。
请参阅?options
‘max.print’: integer, defaulting to ‘99999’. ‘print’ or ‘show’
methods can make use of this option, to limit the amount of
information that is printed, to something in the order of
(and typically slightly less than) ‘max.print’ _entries_.
发布于 2011-07-20 07:58:43
请参阅?options
options(max.print=999999)
发布于 2022-02-12 03:55:53
可以使用options命令更改要达到的值限制的max.print值。例如:
options(max.print = 1000000)
在这里,您可以在R中更改max.print的值。
https://stackoverflow.com/questions/6758727
复制相似问题