freq.curve.all | R Documentation |
This function is dispatcher on top of a select suite of quaCCC
functions that compute frequency curves for the L-moments. The term “frequency curves” is common in hydrology and is a renaming of the more widenly known by statisticians term the “quantile function.” The notation CCC
represents the character notation for the distribution: exp
, gam
, gev
, gld
, glo
, gno
, gpa
, gum
, kap
, nor
, pe3
, wak
, and wei
. The nonexceedance probabilities to construct the curves are derived from nonexceeds
.
freq.curve.all(lmom, aslog10=FALSE, asprob=TRUE,
no2para=FALSE, no3para=FALSE,
no4para=FALSE, no5para=FALSE,
step=FALSE, show=FALSE,
xmin=NULL, xmax=NULL, xlim=NULL,
ymin=NULL, ymax=NULL, ylim=NULL,
aep4=FALSE, exp=TRUE, gam=TRUE, gev=TRUE, gld=FALSE,
glo=TRUE, gno=TRUE, gpa=TRUE, gum=TRUE, kap=TRUE,
nor=TRUE, pe3=TRUE, wak=TRUE, wei=TRUE,...)
lmom |
A L-moment object from |
aslog10 |
Compute NaNs produced in: log(x, base) will be produced for less than zero values. |
asprob |
The R |
no2para |
If |
no3para |
If |
no4para |
If |
no5para |
If |
step |
Shows incremental processing of each distribution. |
show |
Plots all the frequency curves in a simple (crowded) |
xmin |
Minimum x-axis value to use instead of the automatic value determined from the nonexceedance probabilities. This argument is only used is |
xmax |
Maximum x-axis value to use instead of the automatic value determined from the nonexceedance probabilities. This argument is only used is |
xlim |
Both limits of the x-axis. This argument is only used is |
ymin |
Minimum y-axis value to use instead of the automatic value determined from the nonexceedance probabilities. This argument is only used is |
ymax |
Maximum y-axis value to use instead of the automatic value determined from the nonexceedance probabilities. This argument is only used is |
ylim |
Both limits of the y-axis. This argument is only used is |
aep4 |
A logical switch on computation of corresponding distribution—default is |
exp |
A logical switch on computation of corresponding distribution—default is |
gam |
A logical switch on computation of corresponding distribution—default is |
gev |
A logical switch on computation of corresponding distribution—default is |
gld |
A logical switch on computation of corresponding distribution—default is |
glo |
A logical switch on computation of corresponding distribution—default is |
gno |
A logical switch on computation of corresponding distribution—default is |
gpa |
A logical switch on computation of corresponding distribution—default is |
gum |
A logical switch on computation of corresponding distribution—default is |
kap |
A logical switch on computation of corresponding distribution—default is |
nor |
A logical switch on computation of corresponding distribution—default is |
pe3 |
A logical switch on computation of corresponding distribution—default is |
wak |
A logical switch on computation of corresponding distribution—default is |
wei |
A logical switch on computation of corresponding distribution—default is |
... |
Additional parameters are passed to the parameter estimation routines such as |
An extensive R data.frame
of frequency curves. The nonexceedance probability values, which are provided by nonexceeds
, are the first item in the data.frame
under the heading of nonexceeds
. If a particular distribution could not be fit to the L-moments of the data; this particular function returns zeros.
The distributions selected for this function represent a substantial fraction of, but not all, distributions supported by lmomco. The all
and “all” in the function name and the title of this documentation is a little misleading. The selection process was made near the beginning of lmomco availability and distributions available in the earliest versions. Further the selected distributions are frequently encountered in hydrology and because these are also those considered in length by Hosking and Wallis (1997) and the lmom package.
W.H. Asquith
Hosking, J.R.M., and Wallis, J.R., 1997, Regional frequency analysis—An approach based on L-moments: Cambridge University Press.
quaaep4
,
quaexp
,
quagam
,
quagev
,
quagld
,
quaglo
,
quagno
,
quagpa
,
quagum
,
quakap
,
quanor
,
quape3
,
quawak
, and
quawei
.
L <- vec2lmom(c(35612,23593,0.48,0.21,0.11))
Qtable1 <- freq.curve.all(L, step=TRUE, no2para=TRUE, no4para=TRUE)
## Not run:
Qtable2 <- freq.curve.all(L, gld=TRUE, show=TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.