inst/test-scripts/test-arrows.R

require(grDevices); require(graphics)

library(gridGraphics)

exampleArrows <- function() {
    set.seed(1)
    x <- stats::runif(12); y <- stats::rnorm(12)
    i <- order(x, y); x <- x[i]; y <- y[i]
    plot(x,y, main = "arrows(.) and segments(.)")
    ## draw arrows from point to point :
    s <- seq(length(x)-1)  # one shorter than data
    arrows(x[s], y[s], x[s+1], y[s+1], col = 1:3)
    s <- s[-length(s)]
    segments(x[s], y[s], x[s+2], y[s+2], col = "pink")
}

plotdiff(expression(exampleArrows()), "arrows")

plotdiffResult()

Try the gridGraphics package in your browser

Any scripts or data that you put into this service are public.

gridGraphics documentation built on Dec. 15, 2020, 5:10 p.m.