On May 20, 2008, at 11:49 AM, David Afshartous wrote:

All,

Very basic question I can't seem to find the answer to:

plot(0:10, 0:10)

The axes intersection is not aligned at (0,0) in the lower left.

This is on purpose, so that data points are not obscured by the axes. The axis range is always selected as a bit bigger than the value range.
Perhaps this does what you want:

plot(0:10, 0:10, xaxs="i", yaxs="i")

If it doesn't then we probably need more info.

How does one force this?

I searched for graphical parameters under par(graphics) but can't seem to
find it.

Thanks!
David

Haris Skiadas
Department of Mathematics and Computer Science
Hanover College

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to