R/plot.rankDC.R

Defines functions plot.rankDC

Documented in plot.rankDC

plot.rankDC <- function(x, sort = TRUE, decreasing = FALSE,
                        xlab = "Rank correlation", color = "blue",
                        pch = 21, bg = "blue", lcolor = "grey",
                        lty = "solid", ...) {
  if(sort)
    x <- sort(x, decreasing = decreasing)
  dotchart(x, xlab = xlab,
           color = color, pch = pch, bg = bg, lcolor = lcolor,
           lty = lty, ...)
}
gavinsimpson/analogue documentation built on June 17, 2021, 2:37 a.m.