powered by
Truncate a vector at prob and 1 - prob. Extreme values are turned in NA values.
truncate(x, prob = 0.01, p_low = prob, p_high = 1 - prob)
vector
A vector to be winsorized
Level (two-sided) for winsorization (e.g., 0.01 gives 1% and 99%)
Optional lower level for winsorization (e.g., 0.01 gives 1%)
Optional upper level for winsorization (e.g., 0.99 gives 99%)
trunced <- truncate(1:100, prob = 0.05) min(trunced, na.rm = TRUE) max(trunced, na.rm = TRUE)
Run the code above in your browser using DataLab