View source: R/2_finite_filters.R
finite_filters | R Documentation |
Manipulating Finite Filters
finite_filters(
sfilter,
rfilters = NULL,
lfilters = NULL,
first_to_last = FALSE
)
## S4 method for signature 'finite_filters'
show(object)
sfilter |
the symmetric filter ( |
rfilters |
the right filters (used on the last points). |
lfilters |
the left filters (used on the first points). |
first_to_last |
boolean indicating if the first element of |
object |
|
ff_lp <- lp_filter()
ff_simple_ma <- finite_filters(moving_average(c(1, 1, 1), lags = -1)/3,
rfilters = list(moving_average(c(1, 1), lags = -1)/2))
ff_lp
ff_simple_ma
ff_lp * ff_simple_ma
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.