Under the initial line it tells you the totals in con cells(Ncells -that is a 28 byte for 32 bit system and 56 bytes for a 64 bit system... ) then the total in vector cells (Vcells , they are 8 bytes)
The following table just breaks down how it was distributed:
The number cleared now under used, the number which would have triggered automatically and the max used PRIOR to gc()
in the third column is the amount used since the prior reset.
If you want to see more details ?gc()
in the console.....you get it all! And the base manual for R explains how garbage collection works. And ?Memory
gives you an idea of how memory is allocated.
Edit:
Finally, to see the results of a garbage collection, you could use an external resource monitoring applications. In windows, that just amounts to keeping the Task Manager open. In unix/linux, you could consult htop
, or in macOS, the Activity Monitor app.