R/zzz.R

Defines functions custom_words .onLoad

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.rwdataplyr <- list(
    rwdataplyr.wy_month_tol = 6
  )
  toset <- !(names(op.rwdataplyr) %in% names(op))
  if(any(toset)) options(op.rwdataplyr[toset])
  
  invisible()
}

custom_words <- function()
{
  c("asis", "crss", "CRSS", "csv", "rdf", "rdfs", "RiverWare", "riverware", 
    "RiverSMART")
}

.onUnload <- function (libpath) {
  library.dynam.unload("RWDataPlyr", libpath)
}

Try the RWDataPlyr package in your browser

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

RWDataPlyr documentation built on April 17, 2020, 9:06 a.m.