as.fts: Convert from/to fts

Description Usage Arguments Details Value Author(s) Examples

Description

convert an object into an fts and vice versa

Usage

1
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

1
2
3
4
5
6
N <- 100
xm <- matrix(rnorm(N))
dts <- seq(from=Sys.Date(),length.out=N,by="days")
rownames(xm) <- format(dts,"%Y-%m-%d")
x.from.m <- as.fts(xm)
x.from.df <- as.fts(data.frame(asofdate=dts,my.data=xm))

armstrtw/fts documentation built on May 10, 2019, 1:42 p.m.