Hi I have a problem with the memory in RStudio.
I have imported in the Global Env many large data frames and a certain point I get this error:
Error: vector memory exhausted (limit reached?)
So after that I cannot import any additional files or perform any operation on those data frames which I would like to do.
Another thing that came to my mind is to import half of those data frames and put in a list perform the operation on the list for just half of them. However after putting them in a list, I cleared the Global Env of those objects however even after removing them from the Global Env I still get the same error and if I do gc() still I am not able to clear the memory:
used (Mb) gc trigger (Mb) limit (Mb) max used (Mb)
Ncells 20758418 1108.7 67618782 3611.3 NA 20758418 1108.7
Vcells 1885547953 14385.6 2132002895 16265.9 16384 1885547953 14385.6
I don't want to restart the R session because then otherwise the list containing the df will be gone. Any suggestion highly appreciated.