winsorize {broman}R Documentation

Winsorize a vector

Description

For a numeric vector, move values below and above the q and 1-q quantiles to those quantiles.

Usage

winsorize(x, q = 0.006)

Arguments

x

Numeric vector

q

Lower quantile to use

Value

A vector like the input x, but with extreme values moved in to the q and 1-q quantiles.

Examples

x <- sample(c(1:10, rep(NA, 10), 21:30))
winsorize(x, 0.2)


[Package broman version 0.80 Index]