L-Moments for robust statistics.
Project description
Lmo - Trimmed L-moments and L-comoments
Is your tail too heavy?
Can't find a moment?
Are the swans black?
The distribution pathological?
... then look no further: Lmo's got you covered!
Uniform or multi-dimensional, Lmo can summarize it all with one quick glance!
Unlike the legacy moments, L-moments uniquely describe a probability distribution. The "L" stands for Linear; it is a linear combination of order statistics. So Lmo is as fast as sorting your samples (in terms of time-complexity).
Even if your data is pathological like Cauchy, and the L-moments are not defined, the trimmed L-moments (TL-moments) can be used instead:
>>> import numpy as np
>>> import lmo
>>> rng = np.random.default_rng(1980)
>>> x = rng.standard_cauchy(96) # pickle me, Lmo
>>> x.mean(), x.std() # don't try this at home
(-1.7113440959133905, 19.573507308373326)
>>> lmo.l_loc(x, trim=(1, 1)), lmo.l_scale(x, (1, 1))
(-0.17937038148581977, 0.6828766469913776)
For reference; the theoretical TL-location and TL-scale of the standard Cauchy distribution are $\lambda^{(1, 1)}_{1} = 0$ and $\lambda^{(1, 1)}_2 \approx 0.7$ (Elamir & Seheult, 2003).
Key Features:
- Calculates trimmed L-moments and L-comoments, from data and distributions.
- Exact non-parametric variance structure of the sample estimates.
- Coming soon:
Robust distribution fitting; the method of L-moments. - Complete docs, including overly complex $\TeX$ spaghetti equations.
- Clean Pythonic syntax for ease of use.
- Vectorized functions for very fast fitting.
- Fully typed, tested, and tickled.
See the documentation for usage examples and code reference.
Installation
Lmo is on PyPI, so you can do something like:
pip install lmo
Dependencies
python >= 3.10
numpy >= 1.22
scipy >= 1.9
Foundational Literature
- J.R.M. Hosking (1990) – L-moments: Analysis and Estimation of Distributions using Linear Combinations of Order Statistics
- E.A.H. Elamir & A.H. Seheult (2003) – Trimmed L-moments
- E.A.H. Elamir & A.H. Seheult (2004) – Exact variance structure of sample L-moments
- J.R.M. Hosking (2007) – Some theory and practical uses of trimmed L-moments
- R. Serfling & P. Xiao (2007) – A contribution to multivariate L-moments: L-comoment matrices
- W.H. Asquith (2011) – Univariate Distributional Analysis with L-moment Statistics
- C. Dutang (2017) – Theoretical L-moments and TL-moments Using Combinatorial Identities and Finite Operators
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file lmo-0.7.0.tar.gz
.
File metadata
- Download URL: lmo-0.7.0.tar.gz
- Upload date:
- Size: 24.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.2 Linux/6.2.6-76060206-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43788f61dd3a956402c78831a57db6d0f36b1b8de05a3a49c2b9cd5ae86069d3 |
|
MD5 | 47669c3beb51d21b2b9791fe5a7db710 |
|
BLAKE2b-256 | 4720ad55c5a2866e697edc73fa94e9e7217b1b51aa26c663430564ea07bf5cb6 |
File details
Details for the file lmo-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: lmo-0.7.0-py3-none-any.whl
- Upload date:
- Size: 27.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.2 Linux/6.2.6-76060206-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 854f49b7bc9133cd2da7356dcbea155f95b6de221525d678c1025bd632442f98 |
|
MD5 | 1090eb24c3896c9c44e0dd69cc48ca2c |
|
BLAKE2b-256 | d44ade54766414c16b76fc0663966741c9688ec535bfc88020d020d3ee9f5bda |