arrowlocator | R Documentation |
Use the graphics::locator()
function to indicate the
endpoints of an arrow and then plot it.
arrowlocator(
reverse = FALSE,
horizontal = FALSE,
vertical = FALSE,
length = 0.1,
...
)
reverse |
If FALSE, first indicate the tail of the arrow and then the head; if TRUE, first indicate the head of the arrow and then the tail. |
horizontal |
If TRUE, force the arrow to be horizontal. (Use the average y-axis value of the two clicks for the vertical placement.) |
vertical |
If TRUE, force the arrow to be vertical. (Use the average x-axis value of the two clicks for the horizontal placement.) |
length |
Length of the edges of the arrow head. |
... |
Additional graphics parameters |
Use graphics::locator()
to indicate the two endpoints of
an arrow and then draw it.
The locations of the endpoints of the arrow, as a two-row matrix. The first row indicates the location of the tail of the arrow; the second row indicates the location of the head of the arrow.
graphics::arrows()
, graphics::locator()
## Not run:
plot(0,0,type="n", xlab="", ylab="", xlim=c(0,100), ylim=c(0,100))
arrowlocator(col="blue", lwd=2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.