Boxplot without outliers

Good afternoon !

Is there a possibility to get a boxplot without the outliers ? Because my boxplot looks like this !

Kind regards

Simco

Check the documentation of boxplot:

outline if outline is not true, the outliers are not drawn

Compare the difference below:

y <- rcauchy(n = 100)

boxplot(x = y)


boxplot(x = y,
        outline = FALSE)

Hope this helps.

1 Like

Yes ! Thanks again !

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.