I have constructed some box-plots in R and have several outliers. I know that the default criteria to set outlier limits are:
- Q3 + 1.5*IQR
- Q1 - 1.5* IQR
However, I would like outliers classified as values that fall outside of the boundaries:
- Q3 + 3*IQR
- Q1 - 3* IQR
Is it possible to set this in R?