| slide {tsibble} | R Documentation |
Rolling window with overlapping observations:
slide() always returns a list.
slide_lgl(), slide_int(), slide_dbl(), slide_chr() use the same
arguments as slide(), but return vectors of the corresponding type.
slide_dfr() & slide_dfc() return data frames using row-binding & column-binding.
slide(.x, .f, ..., .size = 1, .fill = NA, .partial = FALSE, .align = "right", .bind = FALSE) slide_dfr(.x, .f, ..., .size = 1, .fill = NA, .partial = FALSE, .align = "right", .bind = FALSE, .id = NULL) slide_dfc(.x, .f, ..., .size = 1, .fill = NA, .partial = FALSE, .align = "right", .bind = FALSE)
.x |
An object to slide over. |
.f |
A function, formula, or atomic vector. If a function, it is used as is. If a formula, e.g.
This syntax allows you to create very compact anonymous functions. If character vector, numeric vector, or list, it
is converted to an extractor function. Character vectors index by name
and numeric vectors index by position; use a list to index by position
and name at different levels. Within a list, wrap strings in |
... |
Additional arguments passed on to |
.size |
An integer for window size. If positive, moving forward from left to right; if negative, moving backward (from right to left). |
.fill |
A value to fill at the left of the data range ( |
.partial |
if |
.align |
Align index at the "right", "centre"/"center", or "left"
of the window. If |
.bind |
If |
.id |
If not |
The slide() function attempts to tackle more general problems using
the purrr-like syntax. For some specialist functions like mean and sum,
you may like to check out for RcppRoll for faster performance.
slide() is intended to work with list (and column-wise data frame). To
perform row-wise sliding window on data frame, please check out pslide().
.partial = TRUE allows for partial sliding. Window contains observations
outside of the vector will be treated as value of .fill, which will be passed to .f.
.partial = FALSE restricts calculations to be done on complete sliding windows.
Window contains observations outside of the vector will return the value .fill.
future_slide for parallel processing
tile for tiling window without overlapping observations
stretch for expanding more observations
Other sliding window functions: slide2
x <- 1:5 lst <- list(x = x, y = 6:10, z = 11:15) slide_dbl(x, mean, .size = 2) slide_dbl(x, mean, .size = 2, align = "center") slide_lgl(x, ~ mean(.) > 2, .size = 2) slide(lst, ~ ., .size = 2)