[R] Dot plots in R

Richard M. Heiberger rmh at temple.edu
Sat Nov 24 23:37:28 CET 2007


Yes, with the HH package.

require(HH)
dotplot(sample(0:9, 50, replace=TRUE), panel=panel.dotplot.tb)
dotplot(rep(1:5,10) ~ sample(0:9, 50, replace=TRUE), panel=panel.dotplot.tb)
dotplot(rep(1:5,10) ~ sample(0:9, 50, replace=TRUE) | rep(c(1,1,1,2,2),10),
panel=panel.dotplot.tb)
dotplot(~ sample(0:9, 50, replace=TRUE) | rep(c(1,1,1,2,2),10),
panel=panel.dotplot.tb)



More information about the R-help mailing list