xts (version 0.10-1)

dimnames.xts: Dimnames of an xts Object

Description

Get or set dimnames of an xts object.

Usage

# S3 method for xts
dimnames(x)

# S3 method for xts dimnames(x) <- value

Arguments

x

an xts object

value

a list object of length two. See Details.

Value

A list or character string containing coerced row names and/or actual column names.

Attempts to set rownames on xts objects via rownames or dimnames will silently fail. This is your warning.

Details

The functions dimnames.xts and dimnames<-.xts are methods for the base functions dimnames and dimnames<-.

xts objects by design are intended for lightweight management of time-indexed data.

Rownames are redundant in this design, as well as quite burdensome with respect to memory consumption and internal copying costs.

rownames and colnames in R make use of dimnames method dispatch internally, and thus require only modifications to dimnames to enforce the xts no rownames requirement.

To prevent accidental setting of rownames, dimnames<- for xts will simply set the rownames to NULL when invoked, regardless of attempts to set otherwise.

This is done for internal compatibility reasons, as well as to provide consistency in performance regardless of object use.

User level interaction with either dimnames or rownames will produce a character vector of the index, formatted based on the current specification of indexFormat. This occurs within the call by converting the results of calling index(x) to a character string, which itself first creates the object type specified internally from the underlying numeric time representation.

See Also

xts

Examples

Run this code
# NOT RUN {
x <- xts(1:10, Sys.Date()+1:10)
dimnames(x)
rownames(x)
rownames(x) <- 1:10
rownames(x)
str(x)
# }

Run the code above in your browser using DataCamp Workspace