as.environment.xts {xts} | R Documentation |
Coerce an xts Object to an Environment by Column
Description
Method to automatically convert an xts object to an environment containing vectors representing each column of the original xts object. The name of each object in the resulting environment corresponds to the name of the column of the xts object.
Usage
## S3 method for class 'xts'
as.environment(x)
Arguments
x |
An xts object. |
Value
An environment containing ncol(x)
vectors extracted by
column from x
.
Note
Environments do not preserve (or have knowledge) of column order and cannot be subset by an integer index.
Author(s)
Jeffrey A. Ryan
Examples
x <- xts(1:10, Sys.Date()+1:10)
colnames(x) <- "X"
y <- xts(1:10, Sys.Date()+1:10)
colnames(x) <- "Y"
xy <- cbind(x,y)
colnames(xy)
e <- as.environment(xy) # currently using xts-style positive k
ls(xy)
ls.str(xy)
[Package xts version 0.14.0 Index]