반응형
R에서 최대 인쇄 제한을 늘리는 방법
Graph
5461 항목의 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
반응형
'program tip' 카테고리의 다른 글
클래스가 다른 클래스에서 상속되었는지 테스트 (0) | 2020.11.08 |
---|---|
PCH 경고 : 헤더 중지는 매크로 또는 #if 블록에있을 수 없음-Visual C ++ 2010 Express SP1 (0) | 2020.11.08 |
HTTP에서 캐시 제어 헤더의 최대 값 (0) | 2020.11.08 |
실행중인 인스턴스의 EBS 볼륨 크기를 늘리려면 어떻게해야합니까? (0) | 2020.11.08 |
Android MediaPlayer 오류 (1, -2147483648) (0) | 2020.11.08 |