Describe Objects or Elements
Display name, class, size, and dimensions of each object in a given environment. Alternatively, if the main argument is a list-like object, its elements are listed and described.
ll(pos=1, unit="KB", digits=0, dim=FALSE, sort=FALSE, class=NULL, invert=FALSE, ...)
pos |
environment position number, environment name, data frame,
list, model, or any object that |
unit |
unit for displaying object size: "bytes", "KB", "MB", or first letter. |
digits |
number of decimals to display when rounding object size. |
dim |
whether object dimensions should be returned. |
sort |
whether elements should be sorted by name. |
class |
character vector for limiting the output to specified classes. |
invert |
whether to invert the |
... |
passed to |
A data frame with named rows and the following columns:
Class |
object class. |
KB |
object size (see note). |
Dim |
object dimensions (optional). |
The name of the object size column is the same as the unit used.
Arni Magnusson, with a contribution by Jim Rogers
env
is a related function that describes all loaded
environments.
ll() ll(all=TRUE) ll("package:base") ll("package:base", class="function", invert=TRUE) data(infert) ll(infert) model <- glm(case~spontaneous+induced, family=binomial, data=infert) ll(model, dim=TRUE) ll(model, sort=TRUE) ll(model$family)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.