R/dotplot.rankDC.R

Defines functions dotplot.rankDC

Documented in dotplot.rankDC

dotplot.rankDC <- function(x, data = NULL, sort = TRUE, decreasing = FALSE,
                           xlab = "Rank correlation", ...) {
  if(sort)
    x <- sort(x, decreasing = decreasing)
  dotplot(~ x, xlab = xlab, ...)
}

Try the analogue package in your browser

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

analogue documentation built on June 21, 2021, 1:08 a.m.