I am trying to import a 15.51 GB dataset into R on my macbook air:
The file is currently a .sav and my code for importing is:
Sys.setenv(R_MAX_VSIZE = 16e9)
one <- read.spss('NIS.sav', reencode='utf-8')
I get the vector memory exhausted limit reached error message when I try to import.
Is there a way for my to import this dataset? I am happy to just select my specific columns of interest for import instead, if that is a possibility.