File: env.Rd

package info (click to toggle)
gdata 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 964 kB
  • sloc: sh: 27; makefile: 15
file content (39 lines) | stat: -rw-r--r-- 928 bytes parent folder | download
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}