[R] margins within plotting region

2006-11-30 Thread wouter . buytaert
Hi list, there always seem to be a small margin between the actual plot and the axes/box around the plot. For instance, in plot(c(0,1),c(0,1)) the 2 points do not lay on the box around the plot but slightly more to the center. Which parameter controls this margin and is it possible to

Re: [R] margins within plotting region

2006-11-30 Thread Uwe Ligges
See ?par: par(xaxs = i, yaxs = i) plot(0:1, 0:1) Uwe Ligges [EMAIL PROTECTED] wrote: Hi list, there always seem to be a small margin between the actual plot and the axes/box around the plot. For instance, in plot(c(0,1),c(0,1)) the 2 points do not lay on the box around the plot

Re: [R] margins within plotting region

2006-11-30 Thread Peter Dalgaard
[EMAIL PROTECTED] wrote: Hi list, there always seem to be a small margin between the actual plot and the axes/box around the plot. For instance, in plot(c(0,1),c(0,1)) the 2 points do not lay on the box around the plot but slightly more to the center. Which parameter controls this