Learn R Programming

broman (version 0.84)

winsorize: 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)

Value

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

Arguments

x

Numeric vector

q

Lower quantile to use

Examples

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

Run the code above in your browser using DataLab