search for: n3875917

Displaying 1 result from an estimated 1 matches for "n3875917".

Did you mean: 3875937
2011 Oct 05
2
subplot strange behavoir
...t(edm.sub(x[seq(1:5)],y[seq(1:5)]),x=4,y=9,size=c(1,1.5)) subplot(edm.sub(x[seq(15,20,by=1)],y[seq(15,20,by=1)]),x=17,y=9,size=c(1,1.5)) dev.off() One will notice the second subplot is out of position (notice the y-coordinate is the same for both subplots...y=9): http://r.789695.n4.nabble.com/file/n3875917/lookat.png If I try to 'guess' a new y-coordinate for the second subplot, say y=10: png("c:/temp/lookat.tif",res=120,height=600,width=1200) layout(matrix(c(1,2),2,2,byrow=TRUE),c(1.5,2.5),respect=TRUE) plot(seq(1:10),seq(1:10),type="l",las=1,col="blue") plot...