加载一个大的RData文件

加载一个大的RData文件,r,load,rdata,R,Load,Rdata,我无法加载RData文件,我收到以下错误消息 > load("GPL570_matrix.Rdata") Error: cannot allocate vector of size 8.9 Gb In addition: Warning messages: 1: Reached total allocation of 5941Mb: see help(memory.size) 2: Reached total allocation of 5941Mb: see help(memory.s

我无法加载RData文件,我收到以下错误消息

> load("GPL570_matrix.Rdata")
Error: cannot allocate vector of size 8.9 Gb
In addition: Warning messages:
1: Reached total allocation of 5941Mb: see help(memory.size) 
2: Reached total allocation of 5941Mb: see help(memory.size) 
3: Reached total allocation of 5941Mb: see help(memory.size) 
4: Reached total allocation of 5941Mb: see help(memory.size)
我尝试使用

memory.limit(size=11264)
但R最终崩溃了。这是我的会话信息

> sessionInfo()
R version 2.14.2 (2012-02-29)
Platform: x86_64-pc-mingw32/x64 (64-bit)

locale:
[1] LC_COLLATE=English_United States.1252  LC_CTYPE=English_United States.1252   
[3] LC_MONETARY=English_United States.1252 LC_NUMERIC=C                          
[5] LC_TIME=English_United States.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

loaded via a namespace (and not attached):
[1] tools_2.14.2

提前谢谢。

文件有多大?到底有多少字节?是你创造的还是从别的地方得到的?也许你的电脑没有足够的内存来读取它?当你说“R最终崩溃”时,是在设置内存限制并尝试读取文件之后吗?我得到的只是问题,你想要的只是一个答案……此外,你有多少内存?我从其他人那里得到的,它是一个包含基因表达数据的矩阵(~10000个基因和~57000个样本)。我有一个内存为6GB的Intel Core i5,这就是你的问题。电脑不可能读取数据集。我也有类似的问题。实际上,在我看到任何其他错误消息之前,我的会话被中止。我正在尝试加载一个63mb的RData文件。我还运行Intel Core i5@3.40GHz和8GB RAM。这还不够吗?