I am trying to use the code below to import a 4GB database (about 9,000,000 obs and 100 variables) into R using a windows 10 with 8GB RAM
library(feather)
memory.limit(size=99999)
rais_transp = read_feather('rais_transp.feather')
but every time I try to run it I get the following error message
"r encountered a fatal error: the session was terminated"
I have tried to download only one column but still I get the same message and the session is restarted
rais_transp = read_feather('rais_transp.feather', columns=c('black'))
I used to be able to handle this database on my computer, but now I can't run it anymore.
Somebody to help me?
Thanks