Cum2Mom | R Documentation |
Obtains a vector of moments from a vector of cumulants for either univariate or multivariate data.
Cum2Mom(cumulants, Type = c("Univariate", "Multivariate"))
cumulants |
Either a vector of univariate cumulants or a list of vectors of multivariate cumulants. |
Type |
A character string specifying the type of cumulants provided. Use "Univariate" for univariate cumulants and "Multivariate" for multivariate cumulants. |
The vector of moments if Type
is "Univariate" or the list of vectors of moments if Type
is "Multivariate".
Gy. Terdik, Multivariate statistical methods - going beyond the linear, Springer 2021. Section 3.4.
Other Moments and cumulants:
EVSKSkewNorm()
,
EVSKUniS()
,
Mom2Cum()
,
MomCumCFUSN()
,
MomCumSkewNorm()
,
MomCumUniS()
,
MomCumZabs()
# Univariate example
cum_x <- c(1, 2, 3, 4)
Cum2Mom(cum_x, Type = "Univariate")
# Multivariate example
cum <- list(c(0,0), c(1,0,0,1), c(rep(0,8)), c(rep(0,16)), c(rep(0,32)))
Cum2Mom(cum, Type = "Multivariate")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.