
Is the distribution parameter object consistent with the corresponding distribution? The distribution functions (cdfaep4
, pdfaep4
, quaaep4
, and
lmomaep4
) require consistent parameters to return the cumulative
probability (nonexceedance), density, quantile, and L-moments of the distribution,
respectively. These functions internally use the are.paraep4.valid
function.
are.paraep4.valid(para, nowarn=FALSE)
If the parameters are aep4
consistent.
If the parameters are not aep4
consistent.
A distribution parameter list returned by paraep4
or vec2par
.
A logical switch on warning suppression. If TRUE
then options(warn=-1)
is made and restored on return. This switch is to permit calls in which warnings are not desired as the user knows how to handle the returned value---say in an optimization algorithm.
W.H. Asquith
Asquith, W.H., 2014, Parameter estimation for the 4-parameter asymmetric exponential power distribution by the method of L-moments using R: Computational Statistics and Data Analysis, v. 71, pp. 955--970.
Delicado, P., and Goria, M.N., 2008, A small sample comparison of maximum likelihood, moments and L-moments methods for the asymmetric exponential power distribution: Computational Statistics and Data Analysis, v. 52, no. 3, pp. 1661--1673.
is.aep4
, paraep4
para <- vec2par(c(0,1, 0.5, 4), type="aep4")
if(are.paraep4.valid(para)) Q <- quaaep4(0.5,para)
Run the code above in your browser using DataLab