env {gdata} | 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: "bytes", "KB", "MB", 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.
Arni Magnusson arnima@u.washington.edu
search
displays environment names.
ll
is related to env
.
## Not run: env() ## End(Not run)