listObjSizes {rrMisc}R Documentation

Show sizes of R-objects in Memory

Description

Show sizes of R-objects in Memory

Usage

listObjSizes(...)

Arguments

...

arguments passed to further functions

Details

listObjSizes() returns a list of all objects in memory and lists them in order of increasing size. Object size is reported by the function utils::object.size()

Value

List of sizes of R-objects in memory.

Note

under continuous developement

Author(s)

Roland Rapold

References

none

See Also

other utility-functions in this R-package

Examples

if(require("MASS")){
    data(crabs, package="MASS")
    print(listObjSizes())
}

[Package rrMisc version 0.33 Index]