whos: Display contents of an evironment, data.frame or list as a...

Description Usage Arguments Value Author(s) See Also Examples

View source: R/whos.R

Description

Color coded according to class and dimensions of contents. See style for details.

Shortcut for calling whos without exclusion.

Usage

1
2
3
4
whos(envir = parent.frame(), pattern = ".", all.names,
  exclude = getOpt("exclude"))

whos.all(...)

Arguments

envir

Environment, data frame or list to be displayed. Optional, default: globalenv()

pattern

Regexp filtering of objects. Only objects matching the pattern are displayed. Optional, default: show all objects.

all.names

Whether to show hidden objects.

exclude

A list of objects not to be displayed. To set a default exclusion mask use the whos.set.mask function. If whos.set.mask is called without a list of object names all objects currently in globalenv() are hidden. This is useful for example if you have a lot of stuff in the workspace that you aren't currently interested in but is needed to make your code run.

...

Parameters sent to whos.

Value

Nothing

Nothing

Author(s)

Christofer B<c3><a4>cklin

Christofer B<c3><a4>cklin

See Also

whos.options, browse

Examples

1
2
3
4
5
6
7

dataview documentation built on May 1, 2019, 9:08 p.m.

Related to whos in dataview...