R/stripplot.R

Defines functions stripplot

Documented in stripplot

#' Better defaults for stripchart
#'
#' This simply calls \code{stripchart} but specifies
#' a vertical plot with jitter and using \code{pch=1}.
#' 
#' @param ... passed to \code{stripchart}
#'
#' @return a plot
#'
#' @export
stripplot <- function(...) {
  stripchart(..., vertical=TRUE, pch=1, method="jitter")
}
rafalab/rafalib documentation built on April 17, 2021, 6:47 p.m.