Exploration and Graphics for RivEr Trends (EGRET
): An
R-package for the analysis of long-term changes in water quality and
streamflow, including the water-quality method Weighted Regressions on
Time, Discharge, and Season (WRTDS).
Look for new and improved documentation here: https://rconnect.usgs.gov/EGRET/
The link for the official USGS publication user guide is here:
https://pubs.usgs.gov/tm/04/a10/
A companion package EGRETci
implements a set of approaches to the analysis of uncertainty associated
with WRTDS trend analysis.
If you are familiar with the traditional EGRET
workflow,
check out the Overview
and Updates to see how all the latest updates relate.
Recent introduction to WRTDS and the EGRET
package at
the 12th National Monitoring Conference April 19, 2021:
To install the EGRET package, you must be using R 3.0 or greater and run the following command:
install.packages("EGRET")
Evaluating long-term changes in river conditions (water quality and
discharge) is an important use of hydrologic data. To carry out such
evaluations, the hydrologist needs tools to facilitate several key steps
in the process: acquiring the data records from a variety of sources,
structuring it in ways that facilitate the analysis, routines that will
process the data to extract information about changes that may be
happening, and graphical techniques that can display findings about
change. The R package EGRET
(Exploration and Graphics for
RivEr Trends) was developed for carrying out each of these steps in an
integrated manner. It is designed to accept easily data from three
sources: U.S. Geological Survey hydrologic data, Water Quality Portal
Data (currently including U.S. Environmental Protection Agency (EPA)
STORET data, and USDA STEWARDS data), and user-supplied flat files. The
EGRET
package has components oriented towards the
description of long-term changes in streamflow statistics (high flow,
average flow, and low flow) as well as changes in water quality. For the
water-quality analysis, it uses Weighted Regressions on Time, Discharge
and Season (WRTDS) to describe long-term trends in both concentration
and flux. EGRET
also creates a wide range of graphical
presentations of the water-quality data and of the WRTDS results. The
following report serves as a user guide, providing detailed guidance on
installation and use of the software, documentation of the analysis
methods used, as well as guidance on some of the kinds of questions and
approaches that the software can facilitate.
EGRET
includes statistics and graphics for streamflow
history, water quality trends, and the statistical modeling algorithm
Weighted Regressions on Time, Discharge, and Season (WRTDS). Please see
the official EGRET User Guide for more information on the
EGRET
package:
https://doi.org/10.3133/tm4A10
For a thorough discussion of the generalized flow normalization method implemented in the EGRET enhancements, see the paper: “Tracking changes in nutrient delivery to western Lake Erie: Approaches to compensate for variability and trends in streamflow”:
(https://www.sciencedirect.com/science/article/pii/S0380133018302235).
WRTDS on the Choptank River at Greensboro MD, for Nitrate:
library(EGRET)
############################
# Gather discharge data:
<- "01491000" #Choptank River at Greensboro, MD
siteID <- "" #Gets earliest date
startDate <- "2011-09-30"
endDate # Gather sample data:
<-"00631" #5 digit USGS code
parameter_cd<- readNWISSample(siteID,parameter_cd,startDate,endDate)
Sample #Gets earliest date from Sample record:
#This is just one of many ways to assure the Daily record
#spans the Sample record
<- min(as.character(Sample$Date))
startDate # Gather discharge data:
<- readNWISDaily(siteID,"00060",startDate,endDate)
Daily # Gather site and parameter information:
# Here user must input some values for
# the default (interactive=TRUE)
<- readNWISInfo(siteID,parameter_cd)
INFO$shortName <- "Choptank River at Greensboro, MD"
INFO
# Merge discharge with sample data:
<- mergeReport(INFO, Daily, Sample) eList
library(EGRET)
# Sample data included in package:
<- Choptank_eList
eList
boxConcMonth(eList)
boxQTwice(eList)
plotConcTime(eList)
plotConcQ(eList)
multiPlotDataOverview(eList)
# Run WRTDS model:
<- modelEstimation(eList)
eList #>
#> first step running estCrossVal may take about 1 minute
#> estCrossVal % complete:
#> 0 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 50
#> 51 52 53 54 55 56 57 58 59 60
#> 61 62 63 64 65 66 67 68 69 70
#> 71 72 73 74 75 76 77 78 79 80
#> 81 82 83 84 85 86 87 88 89 90
#> 91 92 93 94 95 96 97 98 99
#> Next step running estSurfaces with survival regression:
#> Survival regression (% complete):
#> 0 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 50
#> 51 52 53 54 55 56 57 58 59 60
#> 61 62 63 64 65 66 67 68 69 70
#> 71 72 73 74 75 76 77 78 79 80
#> 81 82 83 84 85 86 87 88 89 90
#> 91 92 93 94 95 96 97 98 99
#> Survival regression: Done
#eList:
plotConcTimeDaily(eList)
#> plotGenConc = TRUE requires running WRTDSKalman
#> on eList. Switching to WRTDS concentration.
plotFluxTimeDaily(eList)
#> plotGenFlux = TRUE requires running WRTDSKalman
#> on eList. Switching to WRTDS concentration.
plotConcPred(eList)
plotFluxPred(eList)
plotResidPred(eList)
plotResidQ(eList)
plotResidTime(eList)
boxResidMonth(eList)
boxConcThree(eList)
plotConcHist(eList)
plotFluxHist(eList)
# Multi-line plots:
<- "1985-09-01"
date1 <- "1997-09-01"
date2 <- "2010-09-01"
date3 <-0.2
qBottom<-10
qTopplotConcQSmooth(eList, date1, date2, date3, qBottom, qTop,
concMax=2,legendTop = 0.85)
<- 2
q1 <- 10
q2 <- 20
q3 <- "07-01"
centerDate <- 1980
yearEnd <- 2010
yearStart plotConcTimeSmooth(eList, q1, q2, q3, centerDate, yearStart, yearEnd, legendTop = 0.55, legendLeft = 1990)
# Multi-plots:
fluxBiasMulti(eList)
#Contour plots:
<-seq(0,2,0.5)
clevel<- 1980
yearStart <- 2010
yearEnd
plotContours(eList, yearStart,yearEnd,qBottom=0.5,
qTop = 20, contourLevels = clevel)
plotDiffContours(eList, year0 = 1990,
year1 = 2010,
qBottom = 0.5,
qTop = 20,
maxDiff = 0.6)
library(EGRET)
# Flow history analysis
# Gather discharge data:
<- "01491000" #Choptank River at Greensboro, MD
siteID <- "" # Get earliest date
startDate <- "" # Get latest date
endDate <- readNWISDaily(siteID, "00060", startDate, endDate)
Daily #> There are 27501 data points, and 27501 days.
# Gather site and parameter information:
# Here user must input some values for
# the default (interactive=TRUE)
<- readNWISInfo(siteID, "00060")
INFO #> Your site for streamflow data is:
#> 01491000 .
#> Your site name is CHOPTANK RIVER NEAR GREENSBORO, MD
#> but you can modify this to a short name in a style you prefer.
#> This name will be used to label graphs and tables.
#> If you want the program to use the name given above, just do a carriage return,
#> otherwise enter the preferred short name(no quotes):
#>
#> The latitude and longitude of the site are: 38.99719 , -75.78581 (degrees north and west).
#>
#> The drainage area at this site is 113 square miles
#> which is being stored as 292.6687 square kilometers.
#>
#> It is helpful to set up a station abbreviation when doing multi-site studies,
#> enter a unique id (three or four characters should work). It is case sensitive.
#> Even if you don't feel you need an abbreviation for your site you need to enter something(no quotes):
#>
#> Your water quality data are for parameter number:
#> 00060
#> which has the name:' Discharge, cubic feet per second '.
#> Typically you will want a shorter name to be used in graphs and tables.
#> The suggested short name is:' Stream flow, mean. daily '.
#> If you would like to change the short name, enter it here,
#> otherwise just hit enter (no quotes):
#> The units for the water quality data are: ft3/s .
#> It is helpful to set up a constiuent abbreviation, enter a unique id
#> three or four characters should work something like tn or tp or NO3).
#> Even if you don't feel you need an abbreviation you need to enter something (no quotes):
#>
#> Required concentration units are mg/l.
#> The INFO dataframe indicates: ft3/s
#> Flux calculations will be wrong if units are not consistent.
$shortName <- "Choptank River at Greensboro, MD"
INFO<- as.egret(INFO, Daily, NA, NA)
eList
# Check flow history data:
plotFlowSingle(eList, istat = 7,qUnit = "thousandCfs")
plotSDLogQ(eList)
plotQTimeDaily(eList, qLower = 1, qUnit = 3)
plotFour(eList, qUnit=3)
plotFourStats(eList, qUnit=3)
When using the WRTDS
model, it is important to be able
to reproduce the results in the future. The following version of R and
package dependencies were used most recently to pass the embedded tests
within this package. There is no guarantee of reproducible results using
future versions of R or updated versions of package dependencies;
however, we will make diligent efforts to test and update future
modeling environments.
::session_info()
sessioninfo#> ─ Session info ───────────────────────────────────────────────────────────────
#> setting value
#> version R version 4.2.3 (2023-03-15 ucrt)
#> os Windows 10 x64 (build 19045)
#> system x86_64, mingw32
#> ui RTerm
#> language (EN)
#> collate English_United States.utf8
#> ctype English_United States.utf8
#> tz America/Chicago
#> date 2023-04-18
#> pandoc 2.19.2 @ C:/Program Files/RStudio/resources/app/bin/quarto/bin/tools/ (via rmarkdown)
#>
#> ─ Packages ───────────────────────────────────────────────────────────────────
#> package * version date (UTC) lib source
#> bit 4.0.5 2022-11-15 [1] CRAN (R 4.2.2)
#> bit64 4.0.5 2020-08-30 [1] CRAN (R 4.2.2)
#> class 7.3-21 2023-01-23 [2] CRAN (R 4.2.3)
#> classInt 0.4-9 2023-02-28 [1] CRAN (R 4.2.2)
#> cli 3.6.1 2023-03-23 [1] CRAN (R 4.2.3)
#> colorspace 2.1-0 2023-01-23 [1] CRAN (R 4.2.2)
#> crayon 1.5.2 2022-09-29 [1] CRAN (R 4.2.1)
#> curl 5.0.0 2023-01-12 [1] CRAN (R 4.2.2)
#> dataRetrieval 2.7.12 2023-04-11 [1] Github (DOI-USGS/dataRetrieval@60483d2)
#> DBI 1.1.3 2022-06-18 [1] CRAN (R 4.2.1)
#> digest 0.6.31 2022-12-11 [1] CRAN (R 4.2.2)
#> dotCall64 1.0-2 2022-10-03 [1] CRAN (R 4.2.1)
#> dplyr 1.1.1 2023-03-22 [1] CRAN (R 4.2.3)
#> e1071 1.7-13 2023-02-01 [1] CRAN (R 4.2.2)
#> EGRET * 3.0.9 2023-04-16 [1] Github (DOI-USGS/EGRET@57fd93f)
#> evaluate 0.20 2023-01-17 [1] CRAN (R 4.2.2)
#> fansi 1.0.4 2023-01-22 [1] CRAN (R 4.2.2)
#> fastmap 1.1.1 2023-02-24 [1] CRAN (R 4.2.2)
#> fields 14.1 2022-08-12 [1] CRAN (R 4.2.1)
#> generics 0.1.3 2022-07-05 [1] CRAN (R 4.2.1)
#> ggplot2 3.4.2 2023-04-03 [1] CRAN (R 4.2.3)
#> glue 1.6.2 2022-02-24 [1] CRAN (R 4.1.3)
#> gridExtra 2.3 2017-09-09 [1] CRAN (R 4.2.1)
#> gtable 0.3.3 2023-03-21 [1] CRAN (R 4.2.3)
#> highr 0.10 2022-12-22 [1] CRAN (R 4.2.2)
#> hms 1.1.3 2023-03-21 [1] CRAN (R 4.2.3)
#> htmltools 0.5.5 2023-03-23 [1] CRAN (R 4.2.3)
#> httr 1.4.5 2023-02-24 [1] CRAN (R 4.2.2)
#> KernSmooth 2.23-20 2021-05-03 [2] CRAN (R 4.2.3)
#> knitr 1.42 2023-01-25 [1] CRAN (R 4.2.2)
#> lattice 0.20-45 2021-09-22 [2] CRAN (R 4.2.3)
#> lifecycle 1.0.3 2022-10-07 [1] CRAN (R 4.2.1)
#> magrittr 2.0.3 2022-03-30 [1] CRAN (R 4.1.3)
#> maps 3.4.1 2022-10-30 [1] CRAN (R 4.2.2)
#> Matrix 1.5-4 2023-04-04 [1] CRAN (R 4.2.3)
#> munsell 0.5.0 2018-06-12 [1] CRAN (R 4.2.1)
#> pillar 1.9.0 2023-03-22 [1] CRAN (R 4.2.3)
#> pkgconfig 2.0.3 2019-09-22 [1] CRAN (R 4.2.1)
#> proxy 0.4-27 2022-06-09 [1] CRAN (R 4.2.1)
#> R6 2.5.1 2021-08-19 [1] CRAN (R 4.2.1)
#> Rcpp 1.0.10 2023-01-22 [1] CRAN (R 4.2.2)
#> readr 2.1.4 2023-02-10 [1] CRAN (R 4.2.2)
#> rlang 1.1.0 2023-03-14 [1] CRAN (R 4.2.3)
#> rmarkdown 2.21 2023-03-26 [1] CRAN (R 4.2.3)
#> rstudioapi 0.14 2022-08-22 [1] CRAN (R 4.2.1)
#> scales 1.2.1 2022-08-20 [1] CRAN (R 4.2.1)
#> sessioninfo 1.2.2 2021-12-06 [1] CRAN (R 4.2.1)
#> sf 1.0-12 2023-03-19 [1] CRAN (R 4.2.3)
#> spam 2.9-1 2022-08-07 [1] CRAN (R 4.2.1)
#> survival 3.5-5 2023-03-12 [1] CRAN (R 4.2.3)
#> tibble 3.2.1 2023-03-20 [1] CRAN (R 4.2.3)
#> tidyselect 1.2.0 2022-10-10 [1] CRAN (R 4.2.1)
#> tzdb 0.3.0 2022-03-28 [1] CRAN (R 4.2.1)
#> units 0.8-1 2022-12-10 [1] CRAN (R 4.2.2)
#> utf8 1.2.3 2023-01-31 [1] CRAN (R 4.2.2)
#> vctrs 0.6.1 2023-03-22 [1] CRAN (R 4.2.3)
#> viridis 0.6.2 2021-10-13 [1] CRAN (R 4.2.1)
#> viridisLite 0.4.1 2022-08-22 [1] CRAN (R 4.2.1)
#> vroom 1.6.1 2023-01-22 [1] CRAN (R 4.2.2)
#> xfun 0.38 2023-03-24 [1] CRAN (R 4.2.3)
#> yaml 2.3.7 2023-01-23 [1] CRAN (R 4.2.2)
#>
#> [1] C:/Users/ldecicco/Documents/R/win-library/4.2
#> [2] C:/Program Files/R/R-4.2.3/library
#>
#> ──────────────────────────────────────────────────────────────────────────────
Please consider reporting bugs and asking questions on the Issues page: https://github.com/DOI-USGS/EGRET/issues
Please email questions, comments, and feedback to: egret_comments@usgs.gov
Additionally, to subscribe to an email list concerning updates to these R packages, please send a request to egret_comments@usgs.gov.
We want to encourage a warm, welcoming, and safe environment for contributing to this project. See the code of conduct for more information.
The Water Mission Area of the USGS has supported the development and
maintenance of the EGRET
R-package. Further maintenance is
expected to be stable through October 2024. Resources are available
primarily for maintenance and responding to user questions. Priorities
on the development of new features are determined by the
EGRET
development team.
Funding for EGRET
currently expires fall 2024.
Expectations are that maintenance and customer service will continue to
be supported past that date.
citation(package = "EGRET")
#>
#> To cite EGRET in publications, please use:
#>
#> Hirsch, R.M., De Cicco, L.A., Murphy, J., 2023, Exploration and
#> Graphics for RivEr Trends (EGRET), version 3.0.9,
#> doi:10.5066/P9CC9JEX
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> author = {Robert Hirsch and Laura DeCicco and Jennifer Murphy},
#> title = {Exploration and Graphics for RivEr Trends (EGRET)},
#> publisher = {U.S. Geological Survey},
#> year = {2023},
#> url = {https://pubs.usgs.gov/tm/04/a10/},
#> }
See this list for WRTDS applications in print:
https://rconnect.usgs.gov/EGRET/articles/References_WRTDS.html
This software is preliminary or provisional and is subject to revision. It is being provided to meet the need for timely best science. The software has not received final approval by the U.S. Geological Survey (USGS). No warranty, expressed or implied, is made by the USGS or the U.S. Government as to the functionality of the software and related material nor shall the fact of release constitute any such warranty. The software 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 software.