zoomplot.zoom | R Documentation |
This function allows to replot the current or a saved plot with specific boundaries, magnification factor and possibly arround a user defined x/y.
zoomplot.zoom( xlim = NULL, ylim = NULL, fact = NULL, moveX = NULL, moveY = NULL, rp = NULL, x = NULL, y = NULL, xlimfn = NULL, ylimfn = NULL, ... )
xlim |
A vector with min and max x |
ylim |
A vector with min and max y |
fact |
A scalar giving the magnification factor (>1 brings you closer) |
moveX |
Expected shift on X axis. |
moveY |
Expected shift on Y axis. corresponding warnings in ?recordPlot. |
rp |
A previously recorded plot with recordPlot(). With all the |
x |
x of a fix point when rescaling, by default the center. |
y |
y of a fix point when rescaling, by default the center. |
xlimfn |
a function using x, y and/or fact to generate new x lim if NULL and xlim/ylim not given will use multipancPoint |
ylimfn |
a function using x, y and/or fact to generate new y lim, if NULL will use xlimfn |
... |
Additional parameters not implemented, just in case. |
This function is not necessarily easy to use by hand. It is designed to work well when called from higher level functions. End user should always use zm().
Not guaranted for now.
This function is the heart of the zoom package and the one that can be. affected by R version changes. It is inspired by the zoomplot function in TeachingDemos package
Corentin M. Barbu
zm, in.zoom
plot(rnorm(1000),rnorm(1000)) zoomplot.zoom(fact=2,x=0,y=0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.