pryr (version 0.1.3)

mem_used: How much memory is currently used by R?

Description

R breaks down memory usage into Vcells (memory used by vectors) and Ncells (memory used by everything else). However, neither this distinction nor the "gc trigger" and "max used" columns are typically important. What we're usually most interested in is the the first column: the total memory used. This function wraps around gc() to return the total amount of memory (in megabytes) currently used by R.

Usage

mem_used()

Arguments

Value

Megabytes of ram used by R objects.

Examples

Run this code
# NOT RUN {
mem_used()
# }

Run the code above in your browser using DataCamp Workspace