I am trying to merge two dataframes: one has 908450 observations of 33 variables, and the other has 908450 observations of 2 variables.
dataframe2 <-merge(dataframe1, dataframe2, by="id")
I’ve cleared all other dataframes from working memory, and reset my memory limit (for a brand new desktop with 24 GB of RAM) using the code:
memory.limit(24576)
But, I’m still getting the error Cannot allocate vector of size 173.Mb.
Any thoughts on how to get around this problem?
To follow up on my comments, use
data.table. I put together a quick example matching your data to illustrate:So it took less than 1/2 second to merge together. I took a before and after screenshot watching my memory. Before the merge, I was using 3.4 gigs of ram. When I merged together, it jumped to 3.7 and leveled off. I think you’ll be hard pressed to find something more memory or time efficient than that.
Before:

After: