1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
\name{env}
\alias{env}
\title{Describe All Loaded Environments}
\description{
Display name, number of objects, and size of all loaded environments.
}
\usage{
env(unit="KB", digits=0)
}
\arguments{
\item{unit}{unit for displaying environment size: "bytes", "KB", "MB",
or first letter.}
\item{digits}{number of decimals to display when rounding environment
size.}
}
\value{
A data frame with the following columns:
\item{Environment}{environment name.}
\item{Objects}{number of objects in environment.}
\item{KB}{environment size \emph{(see notes)}.}
}
\note{
The name of the environment size column is the same as the unit used.
}
\author{Arni Magnusson}
\seealso{
\code{env} is a verbose alternative to \code{\link{search}}.
\code{\link{ll}} is a related function that describes objects in an
environment.
}
\examples{
\dontrun{
env()
}
}
\keyword{data}
\keyword{environment}
\keyword{utilities}
|