I want to freeing up some memory after creating some cforest objects, which seems to occupy my memory even after deleting them from my environment like this:
cf_object <- NULL
I've already tried
rm(list = ls())
and
gc()
and
gc(reset = T)
I can only get rid of those occupied bytes with restarting R studio.
I am using Microsoft R Open 3.2.3 under 64 bit Windows 7. (Platform: x86_64-w64-mingw32/x64 (64-bit))
Any ideas?