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
#'
#' @importFrom graphics stripchart
#' @export
stripplot <- function(...) {
  stripchart(..., vertical=TRUE, pch=1, method="jitter")
}

Try the rafalib package in your browser

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

rafalib documentation built on April 11, 2025, 5:51 p.m.