After plotting how can you get the x and y limits of the plot? I would like to do something like: plot(x); plot.area <- plot.get.area(); xlim <- plot.area$xlim; ylim <- plot.area$xlim; Is there a "plot.get.area()" method? I need it to place my legends. Thank you! Henrik Bengtsson -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch _._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._
How to get xlim & ylim afterwards...
2 messages · HENRIK Bengtsson, Thomas Lumley
On Mon, 12 Feb 2001, HENRIK Bengtsson wrote:
After plotting how can you get the x and y limits of the plot? I would like to do something like: plot(x); plot.area <- plot.get.area(); xlim <- plot.area$xlim; ylim <- plot.area$xlim; Is there a "plot.get.area()" method? I need it to place my legends.
par("usr")
returns a vector with the upper and low ylim and upper and lower xlim on
the current device.
-thomas
Thomas Lumley Asst. Professor, Biostatistics
tlumley at u.washington.edu University of Washington, Seattle
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at stat.math.ethz.ch
_._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._._