Learn R Programming

kStatistics (version 1.0)

nPS: Simple Polykays

Description

Given a sample data, compute an estimate of a product of population cumulants using simple Polykays (generalized k-statistics).

Usage

nPS( v, V )

Arguments

v

array of integers

V

array of sample data

Value

float

estimate of the polykay of order v

Details

Products of kstatistics are known as polykays. They are unbiased estimators of products of cumulants of a distribution and are expressed in terms of the power sum symmetric polynomials in the random variables of the sample. Thus, for the given sample data, nPS(c(i,j,...),data) computes an estimate of the product c_i*c_j*... where c_i, c_j, ... are cumulants of the population distribution.

References

E. Di Nardo, G. Guarino, D. Senato (2008) An unifying framework for k-statistics, polykays and their generalizations. Bernoulli. Vol. 14(2), 440-468. (download from http://www.elviradinardo.it/lavori1.html)

E. Di Nardo, G. Guarino, D. Senato (2008) Symbolic computation of moments of sampling distributions. Comp. Stat. Data Analysis Vol. 52(11), 4909-4922, (download from http://www.elviradinardo.it/lavori1.html)

E. Di Nardo, G. Guarino, D. Senato (2009) A new method for fast computing unbiased estimators of cumulants. Statistics and Computing, Vol. 19, 155-165. (download from http://www.elviradinardo.it/lavori1.html)

P. McCullagh, J. Kolassa (2009), Scholarpedia, 4(3):4699. http://www.scholarpedia.org/article/Cumulants

See Also

nPolyk, nKS, nKM, nPM

Examples

Run this code
# NOT RUN {
data<-c(16.34, 10.76, 11.84, 13.55, 15.85, 18.20, 7.51, 10.22, 12.52, 14.68, 16.08, 
19.43,8.12, 11.20, 12.95, 14.77, 16.83, 19.80, 8.55, 11.58, 12.10, 15.02, 16.83, 
16.98, 19.92, 9.47, 11.68, 13.41, 15.35, 19.11)
nPS(c(2,1), data) 
# generate an estimate of the product c_2*c_1, where c_1 and c_2 are respectively 
# the mean and the variance of the population distribution  

# }

Run the code above in your browser using DataLab