Learn R Programming

vcdExtra (version 0.5-2)

datasets: Information on Data Sets in Packages

Description

The data function is used both to load data sets from packages, and give a display of the names and titles of data sets in one or more packages, however it does not return a result that can be easily used to get additional information about the nature of data sets in packages. The datasets() function is designed to produce a more useful summary display of data sets in one or more packages. It extracts the class and dimension information (dim or code{length}) of each item, and formats these to provide additional descriptors.

Usage

datasets(package, allClass = FALSE, incPackage = length(package) > 1)

Arguments

package
a character vector giving the package(s) to look in
allClass
include all classes of the item (TRUE) or just the last class (FALSE)?
incPackage
include the package name in result?

Value

  • A data.frame whose rows correspond to data sets found in package.

Details

The requested packages must be installed, and are silently loaded in order to extract class and size information.

See Also

data,

Examples

Run this code
datasets("vcdExtra")
datasets(c("vcd", "vcdExtra"))
datasets("datasets")

Run the code above in your browser using DataLab