Re: [R] Looking for nice implementations of rectangular scatterplot matrices

2006-11-30 Thread Richard M. Heiberger
library(lattice) tmp <- data.frame(y1=rnorm(3), y2=rnorm(3), x1=rnorm(3), x2=rnorm(3), x3=rnorm(3)) xyplot(y1+y2 ~ x1+x2+x3, data=tmp, outer=TRUE) __ R-help@stat.math.ethz.ch mailing list https://stat.ethz.ch/mailman/listinfo/r-help PL

[R] Looking for nice implementations of rectangular scatterplot matrices

2006-11-30 Thread christian.ritter
... finding myself doing this by hand one too many times ... maybe someone else has found a nice general solution ... I have a data frame containing n rows on p+q variables which I will call p.1, p2, ..., pp and q1, q2, ... qq. For simplicity all of these variables are continuous numeric. I wan