Site icon R-bloggers

Interactive function for distances in plots

[This article was first published on The Praise of Insects, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
The following R function returns the distance between two points located on a plot. The distance returned is in the same units as that of the plot.
interDist < - function(x){
    aa < - locator(2)
    dx < - aa$x[2] - aa$x[1]
    dy < - aa$y[2] - aa$y[1]
    sqrt(sum(c(dx^2, dy^2)))
}

To leave a comment for the author, please follow the link and comment on their blog: The Praise of Insects.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.