R/plot_blue.R

#' A Blue Plot Function
#'
#' This function allows you to create a plot in blue.
#' @param x A single vector.
#' @param y A single vector.
#' @keywords blue plot
#' @export
#' @examples
#' plot_blue(got$`Book Intro Chapter`, got$`Death Chapter`)

# Create a plot in blue 
plot_blue <- function(x,y) {
  plot(x,y,col="blue")
}
slieber/HackPackage documentation built on May 12, 2019, 10:34 p.m.