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)

ccaPP documentation built on Dec. 9, 2019, 5:08 p.m.