Learn R Programming

sld (version 1.0.0)

lmom.sample: Calculate sample L-Moments

Description

Calculate sample L-Moments of a dataset

Usage

lmom.sample(data,max.mom=3)

Arguments

data

A vector containing a dataset

max.mom

The maximum order of L-Moment to estimate

Value

A vector of length max.mom. The first two elements are the first two L moments. If max.mom is greater than two, the following elements are the corresponding L moment ratios (the L Moment divided by the 2nd L Moment).

Details

This function is a wrapper around the samlmu function from Hosking's lmom package, to give different argument defaults. It calculates sample L Moments.

References

Hosking, J. R. M. (1990). L-moments: analysis and estimation of distributions using linear combinations of order statistics. Journal of the Royal Statistical Society, Series B, 52, 105--124.

Hosking, J. R. M., and Wallis, J. R. (1997). Regional frequency analysis: an approach based on L-moments. Cambridge University Press.

J. R. M. Hosking (2014). L-moments. R package, version 2.2. https://cran.r-project.org/package=lmom

See Also

sld

Examples

Run this code
# NOT RUN {
generated.data <- rsl(300,c(0,1,.4))
lmom.sample(data=generated.data,max.mom=3)

data(PCB1)
lmom.sample(PCB1,max.mom=3)
# }

Run the code above in your browser using DataLab