series.names {tframe}R Documentation

Names of Series in a tframed object

Description

Extract or set names of series in a tframed object.

Usage

    series.names(x)
    series.names(x)

    series.names(data) <- names 

Arguments

data A tframed object.

Value

The first usage gives a vector of strings with the series names. The second usage assigns a vector of strings to be the series names of data.

See Also

tframed, input.series.names, output.series.names

Examples

    z <- matrix(rnorm(100), 50,2)
    series.names(z) <- c("a", "b")
    series.names(z)