Re: [R] combining pairs plot with other plots in one output

2011-10-27 Thread David Winsemius
On Oct 27, 2011, at 6:27 PM, Ulrich wrote: 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 does

[R] combining pairs plot with other plots in one output

2011-10-27 Thread Ulrich
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 ove