fastMedian: Fast implementation of the median

Description Usage Arguments Value Note Author(s) See Also Examples

View source: R/fastMedian.R

Description

Compute the sample median with a fast C++ implementation.

Usage

1

Arguments

x

a numeric vector.

Value

The sample median.

Note

Functionality for removing observations with missing values is currently not implemented.

Author(s)

Andreas Alfons

See Also

fastMAD, median

Examples

1
2
3
set.seed(1234)  # for reproducibility
x <- rnorm(100)
fastMedian(x)

aalfons/ccaPP documentation built on Nov. 27, 2021, 7:47 a.m.