Re: [R] challenge in using layout with r bind function

2009-08-16 Thread John Kane
?layout first example seems to do this unless I misunderstand the placement of the second graph. layout(matrix(c(1,1,0,2), 2, 2, byrow = TRUE)) plot(1:10, col="blue") plot(1:5,col="red") ?rbind for information on it. rbind basically concatinates two rectangular data.sets such as matrices or

Re: [R] challenge in using layout with r bind function

2009-08-16 Thread baptiste auguie
Hi, Try this, layout(matrix(c(1,1,2,3), ncol=2, byrow=T)) hist(1:10) plot.new()# empty space plot(1:10) HTH, baptiste 2009/8/16 RAVI KAPOOR : > Hi > > Can any one explain how i can divide the graphic window > >  into two rows and two columns  -- allocate figure 1 all of row 1 and > allocate fi