align-methods {timeSeries} | R Documentation |
Aligns a 'timeSeries' Object.
## S4 method for signature 'timeSeries' align(x, by = "1d", offset = "0s", method = c("before", "after", "interp", "fillNA", "fmm", "periodic", "natural", "monoH.FC"), include.weekends = FALSE, ...)
x |
an object of class |
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 weekend be included. |
... |
Further arguments to be passed to the interpolating function. |
returns an aligned S4 object of class timeSeries
.
## 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)