R/boxyplot.R

Defines functions boxyplot

Documented in boxyplot

#' Draws a black horizontal box plot with a notch.
#'
#' @param df The data frame to plot
#' @param title String title of the plot
#'
#' @return Prints the box plot.
#' @export
#'
#' @examples
#' See my Lab 2 implementation.
boxyplot <- function(df, title) {
  boxplot(df, col="Black", notch=TRUE, main=title, horizontal=TRUE)
}
matthewCmatt/MATH4753CARROLL documentation built on April 20, 2021, 7:25 p.m.