本文介绍了“内存不足错误(Java)”当使用R和XLConnect包时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图使用XLConnect软件包将一个〜30MB的excel电子表格加载到R中。



这是我写的:

  wb<  -  loadWorkbook (largespreadsheet.xlsx)

大约15秒后,我收到以下错误: p>

这是XLConnect软件包的一个限制,还是有一种方法来调整我的内存设置以允许更大的文件?



感谢任何解决方案/技巧/建议。

解决方案

按照:

  options(java.parameters =-Xmx1024m)
库(XLConnect)


I tried to load a ~30MB excel spreadsheet into R using the XLConnect package.

This is what I wrote:

wb <- loadWorkbook("largespreadsheet.xlsx")

And after about 15 seconds, I got the following error:

Is this a limitation of the XLConnect package or is there a way to tweak my memory settings to allow for larger files?

I appreciate any solutions/tips/advice.

解决方案

Follow the advice from their website:

options(java.parameters = "-Xmx1024m")
library(XLConnect)

这篇关于“内存不足错误(Java)”当使用R和XLConnect包时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 11:25