I'm currently using Revolution R Enterprise Version 7.5.
I am trying to import a dataset from Excel into RRE. Here is my code:
library("dplyr")
library("XLConnectJars")
library("XLConnect")
dataset1 <- readWorksheetFromFile(file.choose(), sheet=1, startRow=1, Header=T)
When I try to execute this block of code, this is the error I get:
Error: OutOfMemoryError (Java): GC overhead limit exceeded
Is there anyway to get large amounts of data into Revolution R Enterprise? Maybe some RevoScaleR library function that I can use?
Even help in R Studio will do.