powered by
This is a wrapper for R's arrows function. See R's documentation for graphics::arrows for further details.
arrows(x0, y0, x1 = x0, y1 = y0, Rcss = "default", Rcssclass = NULL, ...)
coordinates of *from* endpoint
coordinates of *to* endpoint
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStle()
character, style class
Futher parameters, see documentation of graphics::arrows
# NOT RUN { # draw an arrow plot(c(0, 1), c(0, 1), type="n") arrows(0.2, 0.2, x1=0.8, y1=0.5) # }
Run the code above in your browser using DataLab