Description Usage Arguments Value Author(s) See Also Examples
Apply a filter to the summary table from Asquith–Knight discharge decay analyses to get alternative lists of site numbers by processing the summary tables returned by akqdecay
for a sequence of USGS streamgages contained within the R environment
that has been previously populated by fill_akqenv
. The filter is built around only one filter operation per pass. Thus, if a combination of say begyr
and endyr
is desired, users will have to build a post-processing intersect()
operation themselves on the returned sites.
1 |
akqenv |
The R |
mindv |
The minimum number of daily values to compare to the |
begyr |
The minimum (beginning) year to compare to the |
endyr |
The maximum (ending) year to compare to the |
silent |
Suppress informative calls to |
... |
Additional arguments to pass (see source code to ascertain flexible usage). |
An vector for the site
values passing the filter.
W.H. Asquith
1 2 3 4 | sites <- c("01396660", "01400500") # Two USGS streamgages in New Jersey
njdv <- new.env(); fill_dvenv(sites, envir=njdv) # 01396660 first year 1977
njAKQ <- new.env(); fill_akqenv(dvenv=njdv, envir=njAKQ) # 01400500 first year 1903
print(akq_summaryfilter(njAKQ, mindv=18250)) # only 01400500 is returned
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.