Description Usage Format References Examples
Selected symmetrical and asymmetrical theoretical densities with their associated values of skewness (gamma1), standardized kurtosis (gamma2), and standardized fifth (gamma3) and sixth (gamma4) cumulants. Constants were calculated by Headrick using his fifth-order polynomial transformation and given in his Table 1 (2002, p. 691-2, doi: 10.1016/S0167-9473(02)00072-5). Note that the standardized cumulants for the Gamma(10, 10) distribution do not arise from using α = 10,\ β = 10. Therefore, either there is a typo in the table or Headrick used a different parameterization.
1 |
An object of class "data.frame"
; Colnames are distribution names; rownames are
standardized cumulant names followed by c0, ..., c5.
Headrick TC (2002). Fast Fifth-order Polynomial Transforms for Generating Univariate and Multivariate Non-normal Distributions. Computational Statistics & Data Analysis, 40(4):685-711. doi: 10.1016/S0167-9473(02)00072-5. (ScienceDirect)
1 2 3 4 5 | z <- rnorm(10000)
g <- Headrick.dist$Gamma_a10b10[-c(1:4)]
gamma_a10b10 <- g[1] + g[2] * z + g[3] * z^2 + g[4] * z^3 + g[5] * z^4 +
g[6] * z^5
summary(gamma_a10b10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.