--- id: powerlaw version: "2.0.0" license: MIT license_treatment: permissive maintenance: active --- # powerlaw — Toolbox for testing if a probability distribution fits a power law License: permissive · Maintenance: active · Downloads: 118.9K/mo ## What it is and what it does powerlaw is a statistical toolbox for testing whether empirical data follows a power-law distribution and comparing it against competing heavy-tailed models like lognormals. It implements the rigorous methods from Clauset et al. 2007 and Klaus et al. 2011, which address the common problem of incorrectly identifying power laws in real-world data. The package fits power-law parameters (alpha and xmin), performs goodness-of-fit tests, and conducts likelihood-ratio comparisons between distributions. The library is designed for researchers and data analysts who need to determine whether their data exhibits true power-law behavior or whether simpler distributions (like lognormal) provide equally good or better explanations. It integrates with matplotlib for visualization and uses numpy and scipy for numerical computation. The package includes a lognormal_positive variant for cases where theoretical constraints require the underlying distribution parameters to remain positive. Use it for: - Analyze network degree distributions or other empirical data to test whether they follow power laws. - Compare competing heavy-tailed distribution hypotheses using likelihood-ratio tests to determine the best fit. - Visualize fitted power-law distributions and raw data together using matplotlib integration. - Validate whether observed tail behavior in scientific datasets (e.g., biological, physical) matches power-law predictions. - Fit power-law exponents (alpha) and minimum values (xmin) for downstream modeling or theoretical comparison. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Fits heavy-tailed distributions like power laws to data and compares them against alternative distributions such as lognormals using statistical methods from Clauset et al. 2007. Yes. The package is actively maintained, has no known vulnerabilities, low install friction, and a permissive license. It is the standard tool for rigorous power-law fitting in Python and is well-suited for academic research, data analysis, and any work requiring careful statistical comparison of heavy-tailed distributions. Install it if you need to test whether data actually follows a power law rather than relying on visual inspection or naive fitting. ## Install pip install powerlaw uv add powerlaw poetry add powerlaw ## Installing powerlaw Before you install: Low friction: pure Python wheel with five standard scientific dependencies (scipy, numpy, matplotlib, mpmath, tqdm) that most data science environments already have. Actively maintained with recent commits and CI across Python 3.8–3.12. License in practice: MIT license is permissive; you can use, modify, and distribute this package freely with minimal restrictions, making it suitable for academic, commercial, and private projects. Quickstart: import powerlaw import numpy as np data = np.array([1.7, 3.2, 5.4, 2.1, 1.5, 2.8]) fit = powerlaw.Fit(data) print(fit.power_law.alpha) R, p = fit.distribution_compare('power_law', 'lognormal') Verify before relying: - Whether mpmath's numerical precision requirement for negative numbers in scipy's gamma functions remains a practical limitation in current scipy versions. - Performance characteristics and scalability limits on very large datasets. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 118.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags power law fitting, heavy-tailed distribution analysis, goodness of fit testing, distribution comparison, statistical distribution fitting, power law detection, tail behavior analysis, statistical-testing, distribution-fitting, heavy-tailed-data [View on SkillFed](https://skillfed.io/packages/powerlaw) · [View on PyPI](https://pypi.org/project/powerlaw/)