program tip

R에서 최대 인쇄 제한을 늘리는 방법

radiobox 2020. 11. 8. 09:45
반응형

R에서 최대 인쇄 제한을 늘리는 방법


Graph5461 항목의 maxclique 분석을 위해 R 패키지를 사용하고 있습니다.

내가 얻은 최종 출력 항목이 매우 길기 때문에 다음 경고가 표시됩니다.

도달 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_.

참조 ?options:

options(max.print=999999)

프로그램 상단에 기능 옵션 (max.print = 10000)을 설정합니다. 작동하기 전에 이것을 초기화하기를 원하기 때문입니다. 그것은 나를 위해 일하고 있습니다.

참고 URL : https://stackoverflow.com/questions/6758727/how-to-increase-the-limit-for-max-print-in-r

반응형