pwm.beta2alpha {lmomco} | R Documentation |
Conversion of Beta to Alpha Probability-Weighted Moments (PWMs) or Alpha to Beta PWMs
Description
Conversion of “beta” (the well known ones) to “alpha” probability-weighted moments (PWMs) by pwm.beta2alpha
or alpha to beta PWMs by pwm.alpha2beta
. The relations between the and
PWMs are
and
Lastly, note that the are almost exclusively used in the literature. Because each is a linear combination of the other, they are equivalent in meaning but not numerically.
Usage
pwm.beta2alpha(pwm)
pwm.alpha2beta(pwm)
Arguments
pwm |
A vector of alpha or beta probability-weighted moments depending on which related function is called. |
Value
If (
pwm.beta2alpha
), a vector of the . Note that convention is the have a
, but this is placed in the first index
i=1
vector. Alternatively, if (
pwm.alpha2beta
), a vector of the .
Author(s)
W.H. Asquith
References
# NEED
See Also
Examples
X <- rnorm(100)
pwm(X)$betas
pwm.beta2alpha(pwm(X)$betas)
pwm.alpha2beta(pwm.beta2alpha(pwm(X)$betas))
[Package lmomco version 2.5.1 Index]