Tips for managing memory in R

[This article was first published on Revolutions, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

R is an in-memory application, so every new object you create takes up RAM. (Yes, there are ways around that, but that’s a topic for another article.) If you’re working on a small machine (say, a 32-bit Windows system with 1Gb of RAM or less) you might need to be careful with the object you create. This StackOverflow question offers some useful tips for managing objects in RAM, including code for the function lsos to list objects sorted by size:

 
A great way to identify objects (such as X, above) ripe for deletion with rm when you don't need them anymore.

StackOverflow: Tricks to manage the available memory in an R session?

To leave a comment for the author, please follow the link and comment on their blog: Revolutions.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)