moments (version 0.14)

all.cumulants: Statistical Cumulants

Description

This function calculates the cumulants for all orders specified in the given vector, matrix or data frame of raw moments

Usage

all.cumulants(mu.raw)

Arguments

mu.raw

A numeric vector, matrix or data frame of raw moments. For a vector, mu.raw[0] is the order 0 raw moment, mu.raw[1] is the order 1 raw moment and so forth. For a matrix or data frame, row vector mu.raw[0,] contains the order 0 raw moments, row vector mu.raw[1,] contains the order 1 raw moments and so forth.

Value

A vector matrix or data frame of cumulants. For matrices and data frame, column vectors correspond to different random variables.

Details

No details are currently described.

References

Papoulis, A., Pillai, S. U. (2002) Probability, Random Variables and Stochastic Processes, Fourth Edition, McGraw-Hill, New York, 146-147.

See Also

moment, all.moments

Examples

Run this code
# NOT RUN {
set.seed(1234)
x <- rnorm(10000)
mu.raw.x <- all.moments( x, order.max=6 )
all.cumulants( mu.raw.x )
M <- matrix( x, nrow=1000, ncol=10 )
mu.raw.M <- all.moments( M, order.max=6 )
all.cumulants( mu.raw.M )
D <- data.frame( M )
mu.raw.D <- all.moments( D, order.max=6 )
all.cumulants( mu.raw.D )
# }

Run the code above in your browser using DataCamp Workspace