When you generate plots in R with the 'plot' command, and set the left side x-axis limit to zero, with, e.g.
plot(x=c(1:10), y=c(1:10), xlim=c(0,10), ylim=c(0,10))
R, for reasons which are not apparent to me, puts a bunch of extra space between the point (0,0) and the bottom lefthand corner (also at the top).
I can get the graph I want by manually guessing the offsets, and adjusting the bottom and left axis limits accordingly:
plot(x=c(1:10), y=c(1:10), xlim=c(0.38,10), ylim=c(0.38,10))
But the problem is, I have to do this manually for each graph, which seems excessive.
Is there a par-type setting for removing this margin?

d<-1:10 ; r<-c(0, 1.04*max(d)); plot(d, xlim=r, ylim=r, xaxs="i", yaxs="i")– Josh O'Brien Mar 18 '12 at 14:33