#' 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.