lowpass | R Documentation |
Filters high frequencies out of a time series. The filter has the structure x'(n) = (x(n-1)+2*x(n)+x(n+1))/4
lowpass(x, i = 1, fix = NULL, altFilter = NULL, warn = TRUE)
x |
Vector of data points, that should be filtered or MAgPIE object |
i |
number of iterations the filter should be applied to the data |
fix |
Fixes the starting and/or ending data point. Default value is
|
altFilter |
set special filter rule to indexes defined in this parameter. The special filter has the structure x'(n) = (2*x(n)+x(n+1))/3 |
warn |
boolean deciding whether lowpass issues a warning for critical parameter choices or not |
The filtered data vector or MAgPIE object
Jan Philipp Dietrich, Misko Stevanovic
lowpass(c(1, 2, 11, 3, 4))
# to fix the starting point
lowpass(c(0, 9, 1, 5, 14, 20, 6, 11, 0), i = 2, fix = "start")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.