How to clean up R memory (without the need to restart my PC)?

后端 未结 8 933
小蘑菇
小蘑菇 2020-12-07 14:37

I am running my code in R (under Windows) which involves a lot of in-memory data. I tried to use rm(list=ls()) to clean up memory, but seems the memory is still

8条回答
  •  死守一世寂寞
    2020-12-07 15:30

    Use ls() function to see what R objects are occupying space. use rm("objectName") to clear the objects from R memory that is no longer required. See this too.

提交回复
热议问题