env {gregmisc} | R Documentation |
Display name, number of objects, and size of all loaded environments.
env(unit = c("KB", "MB", "bytes"), digits = 0)
unit |
required unit for displaying environment size: "KB", "MB", "bytes", or first letter. |
digits |
number of decimals to display when rounding environment size. |
A verbose alternative to search()
.
A data frame with the following columns:
Environment |
environment name. |
Objects |
number of objects in environment. |
KB |
environment size (see notes). |
The name of the environment size column is the same as the unit used.
Objects of class classRepresentation
,
ClassUnionRepresentation
, and grob
do not have a defined
size, so 0 bytes are assumed for those.
Arni Magnusson arnima@u.washington.edu
search
displays environment names.
ll
and elem
are related to env
.
## Not run: env() ## End(Not run)