I have a large data matrix that I created in R that is 5.6GB. I want to load it into Alteryx for further transformation and analysis. I am having trouble loading and writing it to Alteryx. Here is the script I have tried using in the R tool, and the outcome:
----------------------
memory.limit()
memory.limit(60000)
dat <- as.data.frame(readRDS("~file.rds"))
write.Alteryx(dat, 1)
-------------------------
After 3.5 minutes, I get this error message: "The R.exe exit code (4294967295) indicated an error."
If I run this code to test if it can read the matrix:
----------------------
memory.limit()
memory.limit(60000)
readRDS("~file.rds")
-----------------------------------
I see it read the matrix and outputs some of the data. It just seems to be a problem when I try and assign the data somewhere.