Nothing
#' 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")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.