I would like to combine multiple plots (one of which is a pairs plot) in one output display:
While this works well: layout(matrix(c(1,2,3,3,3,3), ncol=2, byrow=T)) data <- matrix(rnorm(1000), ncol=10) boxplot(data) hist(data) plot(data) This doesn't: (because the pairs function seems to override the layout parameters?) layout(matrix(c(1,2,3,3,3,3), ncol=2, byrow=T)) data <- matrix(rnorm(1000), ncol=10) boxplot(data) hist(data) pairs(data) Thanks for your help, Uli --- Ulrich Schlecht, PhD 855 South California Avenue Palo Alto, CA-94304, USA [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.