I made a boxplot without outliers.
boxplot(data, names = names(files), las = 2, outline=FALSE)
Now, I am trying to add stripchart on it:
stripchart(data, method = "jitter", add = T, col = "red")
Plot looks something like this:
I understand the reason why plot is like this: because I have not plotted outliers with boxplot. How to add stripchart properly (without outliers)?
](../../images/3816098930.webp)
 
    