Skip to content
Prev 132324 / 398506 Next

Scatterplot Showing All Points

Wayne Aldo Gavioli wrote:
Hi Wayne,
While this is not a really pretty picture, you can get a viewable plot 
with count.overplot if the first two elements of "education" are named 
"x" and "y" and they are the coordinates you want to plot. Otherwise, 
pass the x and y coordinates separately.

library(plotrix)
count.overplot(education,
  tol=c(diff(range(education$x))/10,
  diff(range(education$y))/10))

Jim