Learn R Programming

broman (version 0.72-4)

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)

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

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

# }

Run the code above in your browser using DataLab