R 메모리 관리 / 크기가 nMb인 벡터를 할당할 수 없습니다. 저는 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 size 572.2 Mb # Can't go smaller anymore > rm(list=ls(all=TRUE)) > a = matrix(NA, 3500000, 60) # Now i..