Description Usage Arguments Value Note Author(s) See Also Examples
Extract the raw computations from output of fdclmr
and place the results into an R data.frame
. This function will insert a row of NA
's into the returned table of the changes from one streamgage to the next using the built-in R rbind()
function. The inserted line will look something like row 6873:
1 2 3 4 5 6 7 |
By providing this NA
, as shown, graphical operations on the table will be able to “lift the pen” when the successive streamgage is encountered.
1 | lmrfdc_table(lmrfdcenv, NAline.insert=TRUE, silent=FALSE, ...)
|
lmrfdcenv |
A user created by |
NAline.insert |
A logical that can be used to suppress the |
silent |
Suppress informative calls to |
... |
Additional arguments to pass. |
An R data.frame
of mutable length but containing the following columns:
site |
An echo of the |
n |
The number of days (values) entering into the L-moment computations; |
nzero |
The number of zero flow days that would not enter into L-moment computations if and only if |
L1 |
The arithmetic mean (λ_1); |
L2 |
L-scale (λ_2); |
T3 |
L-skew (τ_3), third L-moment ratio; |
T4 |
L-kurtosis (τ_4), fourth L-moment ratio; |
T5 |
Fifth unnamed L-moment ratio (τ_5), but the term L-cinco occasionally could be used; and |
T6 |
Fifth unnamed L-moment ratio (τ_6), but the term L-seis could be used. |
The logic here is almost exactly that of akq_table
with only differences in the last couple of lines of internal code. This is not a great design thus, but because the different themes of day-over-day changes and then statistics of the flow-duration curve, it is felt it is prudent to have separate implementations.
W.H. Asquith
1 | # See Examples under fill_lmrfdcenv and elsewhere in this documentation.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.