Skip to content
Prev 86149 / 398526 Next

Plotting 27 line plots in one page

Dear group, 
 I am a novice programmer in R.  I have a list that
has a length of 27 elements. Each element is derived
from table function.
27

I want to plot all these elements in 9x3 plot (9 rows
and 3 columns)
par(9,3)
+ for (i in 1:27){
+ plot(unlist(mydata[i]))
+ }
+ }
In the graphics window, all 27 figures are drawn in
fraction of sec, one by one and I get to see the last
graph.  It is not drawing into this 9X3 grid. 

Could any one help me please. 

Thanks
sri