Learn R Programming

Rlab (version 2.15.1)

ls.rlab: List of objects in Rlab

Description

List the objects in Rlab. By default the Rlab datasets are listed, however "functions" or "all" can be specified to list only the Rlab functions or everything in Rlab.

Usage

ls.rlab(what="data")
ls.summary.rlab(what="data")

Arguments

what

character string specifying which Rlab object to list, which may be one of "data" or "d" (default) : lists datasets "functions" or "f" : lists functions "all" or "a" : lists everything "ex" or "e" : lists the files which can be viewed with the ex method

Details

The ls.summary.rlab function will list various object attributes, such as class and size.

See Also

ls, search

Examples

Run this code
# NOT RUN {
# list all Rlab datasets and their sizes
ls.summary.rlab()

# list all Rlab functions
ls.rlab("functions")
 
# }

Run the code above in your browser using DataLab