I am running R code in ubuntu and want to free some memory. After deleting the variables ( rm() ) I call gc() . It seems to work. But how to make it work in silence (i.e. do not report it). I tried setting gcinfo(verbose=FALSE) , but gc() still reports this message.
gcinfo(verbose=FALSE) # [1] FALSE gc() # used (Mb) gc trigger (Mb) max used (Mb) # Ncells 256641 13.8 467875 25.0 350000 18.7 # Vcells 103826620 792.2 287406824 2192.8 560264647 4274.5
source share