How to check the amount of RAM

Viewed 36986

I want to make a function that imports data in different numbers of batches depending on how much RAM is available on someone's system. But how can I find the amount of available RAM in R? I can use memory.size() but that only works for Windows.

3 Answers

I would recommend using memuse::Sys.meminfo().

Related