-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathgsplot.R
More file actions
50 lines (46 loc) · 1.96 KB
/
gsplot.R
File metadata and controls
50 lines (46 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
.onAttach <- function(libname, pkgname) {
packageStartupMessage("This information is preliminary or provisional and is subject to revision. It is being provided to meet the need for timely best science. The information has not received final approval by the U.S. Geological Survey (USGS) and is provided on the condition that neither the USGS nor the U.S. Government shall be held liable for any damages resulting from the authorized or unauthorized use of the information. Although this software program has been used by the USGS, no warranty, expressed or implied, is made by the USGS or the U.S. Government as to the accuracy and functioning of the program and related program material nor shall the fact of distribution constitute any such warranty, and no responsibility is assumed by the USGS in connection therewith.")
}
#' gsplot
#'
#' \tabular{ll}{
#' Package: \tab gsplot\cr
#' Type: \tab Package\cr
#' License: \tab Unlimited for this package, dependencies have more restrictive licensing.\cr
#' Copyright: \tab This software is in the public domain because it contains materials
#' that originally came from the United States Geological Survey, an agency of
#' the United States Department of Interior. For more information, see the
#' official USGS copyright policy at
#' http://www.usgs.gov/visual-id/credit_usgs.html#copyright\cr
#' LazyLoad: \tab yes\cr
#' }
#'
#' Collection of functions to do USGS graphics.
#'
#' @name gsplot-package
#' @docType package
NULL
#' Example Daily Data
#'
#' Example data representing data from the Maumee River at Waterville OH (discharge, temperature, pH)
#'
#' @name MaumeeDV
#' @docType data
#' @examples
#' \dontrun{
#'
#' library(dataRetrieval)
#'
#' sites <-c("04193490","04193500")
#'
#' begin <- "1981-10-01"
#' end <- "2011-09-30"
#'
#' pCodes <- c("00060","00010","00400")
#' statCd <- c("00003", "00008")
#'
#' MaumeeDV <- readNWISdv(sites, pCodes, begin, end, statCd)
#' MaumeeDV <- renameNWISColumns(MaumeeDV)
#' }
#' head(MaumeeDV)
NULL