W_delta | R Documentation |
Inverse transformation W_delta_alpha
for heavy-tail Lambert W RVs and its derivative.
This is the inverse of Tukey's h transformation as a special case of alpha = 1
.
W_delta(z, delta = 0)
W_delta_alpha(z, delta = 0, alpha = 1)
W_2delta(z, delta = c(0, 1/5))
W_2delta_2alpha(z, delta = c(0, 0), alpha = c(1, 1))
deriv_W_delta(z, delta = 0)
deriv_W_delta_alpha(z, delta = 1, alpha = 1)
z |
a numeric vector of real values. |
delta |
heavy-tail parameter(s); by default |
alpha |
heavy-tail exponent(s) in |
Computes sgn(z) \left(\frac{1}{\alpha \delta} W(\alpha \delta (z^2)^{\alpha})
\right)^{1/2 \alpha}
. If z
is a vector, so is the output.
G_delta(0)
W_delta(0)
# W_delta is the inverse of G_delta
u.v <- -2:2
W_delta(G_delta(u.v, delta = 0.3), delta = 0.3)
# with alpha too
G_delta_alpha(u.v, delta = 1, alpha = 0.33)
W_delta_alpha(G_delta_alpha(u.v, delta = 1, alpha = 0.33),
delta = 1, alpha = 0.33) # the inverse
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.