R/addAQILines.R

Defines functions addAQILines

Documented in addAQILines

#' @keywords plotting
#' @export
#' @title Add AQI Lines to a Plot
#' @param ... additional arguments to be passed to \code{abline()}
#' @description This function is a convenience for:
#'
#' \code{abline(h = AQI$breaks_24, col = AQI$colors)}

addAQILines <- function(...) {

  graphics::abline(h = AQI$breaks_24, col = AQI$colors, ...)

}

Try the PWFSLSmoke package in your browser

Any scripts or data that you put into this service are public.

PWFSLSmoke documentation built on Nov. 23, 2021, 5:06 p.m.