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
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
2 matches
Mail list logo