Re: [R] Bug or misunderstanding of par(pin)?

2012-09-25 Thread Sarah Goslee
Hi Vera, You need to do it in two steps, I think because the different parameters you're trying to set interact. par(mfrow=c(3,4),mai=c(0.04,0.04,0.04,0.04), omi=c(0.2,0.32,0.32,2.16)) par(pin=c(1,0.87)) for(i in 1:12) plot(1:10, 1:10) For this level of control, you probably also want to explici

[R] Bug or misunderstanding of par(pin)?

2012-09-25 Thread Vera Thiemig
Dear all, I am currently trying to create a plot showing multiple single plots, for which the important issue is that the size of each plot region (not figure region!) has to be of a fixed dimension (in my case: width=1 inch, height= 0.87 inches). I tried to use "pin" to fix the plotting region t