Yes! All I could think of was this post:
I'm trying to put csv files and bind them together to create a large dataset of census data per year. Unfortunately, there comes a point where R can no longer allocate the data (up to 124Mb if I'm not mistaken). So it decides to just stop reading and binding files up to 2010. I've tried using gc() over and over, but it still does not seem to work
R version: Microsoft R Open 3.4.1
Rstudio version: Version 1.0.153
Windows version: Windows 10 x64 bit
CPU: Intel i3-4005U CPU 1.70GHz
RAM: 4GB
Here is the code.
suppressPackageStartupMessages({
library(dplyr)
library(tidyr)
library(purrr)
library(readr)
library(stringr)
library(ffbase)})
# Import and filter only household head ca…
There are so many different memory issues that could be occurring and even though the R version, Rstudio version, etc was included it still took a long time to sort out.
1 Like