R/call_ggplot2.R

##' Uses ggplot2
##'
##' @description this function exists only to call ggplot2
##' @return a ggplot2 object
##' @export

call_ggplot2 <- function(d) {
  p <- ggplot(d, aes(x=cty, y=hwy)) +
    geom_point()
  p
}
adsteen/testimport documentation built on May 10, 2019, 7:27 a.m.