Instead of R own, boxplot()when used gap.boxplot()from a package, there are plotrixno outliers values. I am trying to understand why.
See this example:
> mtcars[2,c('mpg')] <- 45
> mtcars[6,c('mpg')] <- 77
Using boxplot(mtcars$mpg), you can see two additional points (outliers) on top of the box.

Use gap.boxplot(mtcars$mpg)from plotrixpackage result in this graphic

The big question is: why and how to solve it?
buhtz source
share