If you want something you can actually print or read without zooming in and if you can live with a slightly more abstract view of your data you might try putting multiple box plots in a single graph. Something like:
n = 1000 m = 49
data = data.frame(x = rnorm(n), y = trunc(runif(n, min = 1, max = m + 1)))
splits = split(data$x, data$y)
o = order(sapply(splits, median), decreasing = TRUE)
boxplot(splits[o], horizontal = TRUE)
______________________________________________ [email protected] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
