Displaying 1 result from an estimated 1 matches for "rnotm".
Did you mean:
rnorm
2004 Feb 26
2
limit to complex plots?
...command to generate one figure with one inset sub-figure, but cannot seem to do it for multiple figures on one page.
I've tried a test with the following code:
layout(matrix(c(1,2,3,4), nrow=2, byrow=TRUE))
plot(rnorm(10), rnorm(10))
plot(rnorm(10), rnorm(10))
plot(rnorm(30), rnorm(30))
plot(rnotm(40), rnorm(40))
layout.show(4)
#this works and gives me my one page with 4 figures on it
layout(matrix(c(0,0,0,0,0,1,0,2,0,0,0,0,0,3,0,4), nrow=4, byrow=TRUE))
par(new=TRUE)
plot(rnorm(10), rnorm(10))
par(new=TRUE)
plot(rnorm(20), rnorm(20))
par(new=TRUE)
plot(rnorm(30), rnorm(30))
par(new=TRU...