getSize: Get the Size of Multiple Objects in Your Workspace

Description Usage Arguments Author(s) See Also Examples

Description

This is a convenience wrapper around object.size to get the sizes of multiple objects in your workspace. By default, it will list all the objects in your workspaces, but a specific pattern to match can also be specified.

Usage

1
getSize(pattern = NULL, sort.by = "size")

Arguments

pattern

The pattern to be used by ls. Defaults to "*", meaning to match anything.

sort.by

Should the output be sorted by object size ("size") or name ("name")? Defaults to sort.by = "size".

Author(s)

Ananda Mahto

See Also

ls, object.size

Examples

1
2
3
4
5
6
7
8
9
AA <- rnorm(10000)
AB <- rnorm(100)
CB <- rnorm(50000)

getSize()
getSize("*B", "name")
getSize("*B", "size")
getSize("^A", "name")
getSize("^A", "size")

mrdwab/mrdwabmisc documentation built on May 23, 2019, 7:15 a.m.