8
R 메모리 관리 / 크기 n Mb의 벡터를 할당 할 수 없음
R에서 큰 객체를 사용하는 데 문제가 있습니다. 예를 들면 다음과 같습니다. > memory.limit(4000) > a = matrix(NA, 1500000, 60) > a = matrix(NA, 2500000, 60) > a = matrix(NA, 3500000, 60) Error: cannot allocate vector of size 801.1 Mb > a = matrix(NA, 2500000, 60) Error: cannot allocate vector of …