Graph
Rのパッケージを5461アイテムのmaxclique分析に使用しています。
私が得る最終的な出力項目は非常に長いので、次の警告が表示されます。
到達
getOption("max.print")
-475569行を省略
誰かがの制限を増やす方法を教えてくれませんかmax.print
。
回答:
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_.
Edit
-> GUI preferences...
->に移動しlines
、値を増やします。次にSave...
、OK
。
options(max.print=100)
した後head(df, 30)
、データ行の代わりに列名のリストが表示されます。
参照?options
:
options(max.print=999999)
options(max.print = .Machine$integer.max)
これの最も極端なバージョンです
プログラムの上部に関数options(max.print = 10000)を設定します。動作する前にこれを初期化したいので。それは私のために働いています。