Erin Hodgess-2 wrote > > Dear R People: > > Short of doing a series of ablines, is there a way to produce "graph > paper" in R please? > > Thanks, > Erin > > > -- > Erin Hodgess > Associate Professor > Department of Computer and Mathematical Sciences > University of Houston - Downtown > mailto: erinm.hodgess@ > > ______________________________________________ > R-help@ 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. >
How about ... x = rnorm(100) y = rnorm(100) plot(x,y) grid() HTH Pete -- View this message in context: http://r.789695.n4.nabble.com/graph-paper-look-tp4308827p4308906.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ 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.