230k views
2 votes
How do you find over laps in dot plots

1 Answer

3 votes

Answer:

boxplot(count ~ spray, data = InsectSprays, outpch = NA)

stripchart(count ~ spray, data = InsectSprays,

vertical = TRUE, method = "jitter",

pch = 21, col = "maroon", bg = "bisque",

add = TRUE)

(Setting 'outpch = NA' avoids plotting outliers.)

Explanation:

User IMarkDesigns
by
5.9k points