View source: R/as.environment.xts.R
as.environment.xts | R Documentation |
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.
## S3 method for class 'xts'
as.environment(x)
x |
An xts object. |
An environment containing ncol(x)
vectors extracted by
column from x
.
Environments do not preserve (or have knowledge) of column order and cannot be subset by an integer index.
Jeffrey A. Ryan
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.