Winsorize Data, Results and Quantiles Question

Hi Yarnabrina,

thanks for your support :slight_smile: I unterstand the Min/Max value now.

yes I used the robustHD package, but I also tried Desctools now and got different results. What is the difference between these two? The DescTool package seems to be the right one

> #robustHD
> summary(winsorize(Data, probs = c(0.05, 0.95)))
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
   14.0    59.0   139.5   186.4   315.0   418.2 
#DescTools
> summary(Winsorize(Data, probs = c(0.05, 0.95)))
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
   23.0    59.0   139.5   229.3   315.0   770.4 
>