This presents the function signature for the output of
rollit
.
rollit_example(x, n, by.column, weights, normalize = FALSE)
A vector/matrix of numeric type.
integer; the window / subset size to roll over.
boolean; if TRUE
we loop over columns,
otherwise we loop over rows.
a vector of length n
; specify the weighting
to assign to each element in the window.
boolean; if TRUE
we normalize the weights to
sum to 1.
This function does not return anything; it merely exists
as a skeleton to provide documentation for your own rollit
generated functions.