Last data update: 2014.03.03

R: find date intersection among multiple fts objects
intersect.allR Documentation

find date intersection among multiple fts objects

Description

find date intersection

Usage

intersect.all(...)

Arguments

...

Fts objects

Value

a vector of dates

Author(s)

Whit Armstrong

Examples

x <- fts(index=seq(from=Sys.Date(),by="days",length.out=100),data=1:100)
y <- fts(index=seq(from=Sys.Date(),by="days",length.out=100),data=1:100)
y <- y[1:nrow(y) %% 2==0,]
intersect.all(x,y)

Results