Usage
track.status(pos = 1, envir = as.environment(pos), expr, qexpr = NULL, list = NULL, pattern = NULL, glob = NULL, file.status = TRUE, tracked = NA, reserved = FALSE, all.names = FALSE, what = c("all", "tracked", "trackable", "untracked", "orphaned", "masked", "unsaved", "untrackable"))
tracked( pos=1, envir=as.environment(pos), list=NULL, pattern=NULL, glob=NULL, all.names = TRUE)
untracked( pos=1, envir=as.environment(pos), list=NULL, pattern=NULL, glob=NULL, all.names = TRUE)
track.orphaned( pos=1, envir=as.environment(pos), list=NULL, pattern=NULL, glob=NULL, all.names = TRUE)
track.masked( pos=1, envir=as.environment(pos), list=NULL, pattern=NULL, glob=NULL, all.names = TRUE)
untrackable( pos=1, envir=as.environment(pos), list=NULL, pattern=NULL, glob=NULL, all.names = TRUE)
track.unsaved( pos=1, envir=as.environment(pos), list=NULL, pattern=NULL, glob=NULL, all.names = TRUE)
Arguments
pos
The search path position of the environment being tracked
(default is 1 for the global environment)
envir
The environment being tracked. This is an alternate way
(to the use of pos=
)
of specifying the environment being tracked, but should be rarely needed.
expr
An unquoted variable name
qexpr
A variable name as an expression -- not intended for use
by end-users
list
A character vector of variable names
pattern
A regular expression specifying variable names to operate upon
glob
A glob pattern specifying variable names to operate upon
file.status
Check whether or not the file associated with a
tracked object exists
tracked
If TRUE
, return information only on tracked
objects, if FALSE
, return information only on objects that
are not tracked, and if NA
return information on all
variables (subject to other filtering).
all.names
should names beginning with a period be included
(like all.names
in ls
)
what
controls the information returned: "all"
means
return a data frame of status, other values means return a list of
names of objects having that status
reserved
If TRUE
, include info about non-tracked variables with
reserved names. The default is to always omit these variables from
the status summary.