Reputation: 6396
I want to remove the space between the axes of the plot and the plot contents themselves. Any ideas?
Upvotes: 10
Views: 2754
Reputation: 25327
Look at the parameters xaxs
and yaxs
(under ?par
). By default the axis contains the data range plus 4% on either side. If you override the parameter, then you can get an axis exactly equal to the data range. Cf:
> curve(x^2)
> curve(x^2, xaxs="i", yaxs="i")
Upvotes: 11