Skip to content
Prev 323521 / 398503 Next

points overlay axis

Try this

set.seed(42)
dat <- matrix(c(runif(48), 0, 0), 25, 2, byrow=TRUE)
# Complete plot symbol on axes, but axis on top
plot(dat, xaxs="i", yaxs="i", pch=16, col="red", xpd=TRUE)
# Complete plot symbol on axes with symbol on top
plot(dat, xaxs="i", yaxs="i", type="n")
points(dat, xaxs="i", yaxs="i", pch=16, col="red", xpd=TRUE)

------------------------------------
David L Carlson
Associate Professor of Anthropology
Texas A&M University
College Station, TX 77840-4352

-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On
Behalf Of John Kane
Sent: Tuesday, May 14, 2013 7:47 AM
To: Jonathan Phillips; r-help at r-project.org
Subject: Re: [R] points overlay axis

Probably but since we don't know what you are doing, it is very hard to give
any advice.  

Please read this for a start
https://github.com/hadley/devtools/wiki/Reproducibility and give us a clear
statement of the problem 

Thanks

John Kane
Kingston ON Canada
____________________________________________________________
FREE ONLINE PHOTOSHARING - Share your photos online with your friends and
family!
Visit http://www.inbox.com/photosharing to find out more!

______________________________________________
R-help at 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.