names.ggobi {Rggobi}R Documentation

Names of the datasets within a ggobi instance.

Description

This returns the names of the datasets within the specified ggobi instance.

Usage

names.ggobi(x)

Arguments

x the ggobi instance whose datasets are to be queried.

Details

The name of a dataset is dependent on the format of the file from which it was read. In XML, the name of the dataset can be supplied with each dataset. In ASCII input, the name of the dataset is the name of the file from which the data was read.

Value

A character vector containing the names of the datasets.

Author(s)

Duncan Temple Lang

References

http://www.ggobi.org

See Also

[.ggobi getDatasetReference.ggobi

Examples

   g <- ggobi(system.file("data", "flea.xml", package="Rggobi"), args="-noinit")
   names(g)
   g[names(g)[[1]]]
   g[[1]]

[Package Rggobi version 1.1-3 Index]