R/xxx.R

Defines functions .onLoad

#' Pipe operator
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @usage lhs \%>\% rhs
NULL

.onLoad <- function(libname = find.package("SanFranBeachWater"),
                    pkgname = "SanFranBeachWater"){

  # CRAN Note avoidance
  if(getRversion() >= "2.15.1")
    utils::globalVariables(c(".", "Date"))
  invisible()
}

Try the SanFranBeachWater package in your browser

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

SanFranBeachWater documentation built on May 2, 2019, 8:36 a.m.