Skip to content
Prev 75197 / 398503 Next

use different symbols for frequency in a plot

You might consider one of these approaches instead:

plot(jitter(x), jitter(y))

or

pdf(file="c:/AlphaExample.pdf", version = "1.4")

plot(x, y, col = rgb(1, 0, 0, .2), pch = 16)

dev.off()
Kerry Bush wrote: