as.fts {fts} | R Documentation |
Convert from/to fts
Description
convert an object into an fts and vice versa
Usage
as.fts(x)
Arguments
x |
an R matrix or data.frame |
Details
converts a rectanular object into an Fts object must be able to convert rownames into some form of dates
Value
an Fts object
Author(s)
Whit Armstrong
Examples
N <- 100
xm <- matrix(rnorm(N))
dts <- format(seq(from=Sys.Date(),length.out=N,by="days"),"%Y-%m-%d")
rownames(xm) <- dts
x.from.m <- as.fts(xm)
x.from.df <- as.fts(data.frame(asofdate=dts,my.data=xm))
[Package fts version 0.9.9.2 Index]