powered by
This is a wrapper for R's stripchart function. See R's documentation for graphics::stripchart for further details.
stripchart(x, Rcss = "default", Rcssclass = NULL, ...)
list of numeric vectors
style sheet object. Leave "default" to use a style defined via RcssSetDefaultStyle()
character, style class
Further parameters, see documentation of graphics::stripchart
# NOT RUN { # draw a complete strip-chart plot dataset <- list(A=c(1,9,3,8), B=c(3,4,2,9,2), C=rpois(8, 10)) stripchart(dataset) stripchart(dataset, method="jitter", vertical=TRUE, pch=19) # }
Run the code above in your browser using DataLab