series.names {tframe} | R Documentation |
Extract or set names of series in a tframed object.
series.names(x) series.names(x) series.names(data) <- names
data |
A tframed object. |
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.
tframed
,
input.series.names
,
output.series.names
z <- matrix(rnorm(100), 50,2) series.names(z) <- c("a", "b") series.names(z)