Unlimited learning, half price | 50% off
Get 50% off unlimited learning

IDPmisc (version 0.9.3)

zoom: Zooming in and out in a 2d-Plot

Description

Function to zoom in and out by mouse click in a 2D-plot.

Usage

zoom(fun = plot, zoom.col = "red", delay = 3, ...)

Arguments

fun
2D-plotting function
zoom.col
Color of clicked points
delay
Number of sec during which the 2 zooming points are shown on the plot before zooming
...
Arguments to plotting function

Value

  • No value returned.

Details

When the clicked points lay within the plot region range, the points define the new plotting limits. When the clicked points lay in the margin, the plotting limits will be moved into the corresponding direction by 1/3 out of the actual range. There is no special sequential order for the zooming points required. The zooming function is stopped by right clicking and choosing the menu item "stop".

Examples

Run this code
i <- 1:100
y <- i*sin(i*(pi/16))
y <- c(rev(y),y)

## Not run:
zoom(fun=plot, zoom.col="red", x=1:200, y=y, ty="l", xlab="index")
## End( Not run)

Run the code above in your browser using DataLab