Learn R Programming

timeSeries (version 4030.106)

align-methods: Align a 'timeSeries' object to equidistant time stamps

Description

Aligns a "timeSeries" object to equidistant time stamps.

Usage

# S4 method for timeSeries
align(x, by = "1d", offset = "0s",
    method = c("before", "after", "interp", "fillNA",
               "fmm", "periodic", "natural", "monoH.FC"),
    include.weekends = FALSE, ...)

Value

a "timeSeries" object.

Arguments

x

an object of class timeSeries.

by

a character string denoting the period.

offset

a character string denoting the offset.

method

a character string denoting the alignment approach.

include.weekends

a logical flag, should weekends be included.

...

further arguments to be passed to the interpolating function.

Details

:TODO:

Examples

Run this code
## Use MSFT and Compute Sample Size -
   dim(MSFT)

## Align the Series -
   MSFT.AL <- align(MSFT)

## Show the Size of the Aligned Series -
   dim(MSFT.AL)

Run the code above in your browser using DataLab