Learn R Programming

RcppRoll (version 0.1.0)

roll_median: Rolling Median

Description

This function implements a rolling median with C++/Rcpp.

Usage

roll_median(x, n, by.column = TRUE)

Arguments

x
An Robject of form: numeric vector, numeric matrix.
n
integer; the window / subset size to roll over.
by.column
boolean; if TRUE we loop over columns, otherwise we loop over rows.