PeCon is a high-performance econometrics and statistics library, designed for researchers and developers who want speed, control, and minimal dependencies.
PeCon implements its own numerical core in C, making it lightweight, fast, and suitable for low-level or embedded scientific workflows.
- 🚀 High performance (C backend, minimal Python overhead)
- 🧮 Core econometrics & statistics implemented from scratch
- 📦 No heavy dependencies
- 🔌 Clean Python API
- 🧠 Designed for research, teaching, and reproducibility
pip install peconAfter cloning the repo
pip install -e .from pecon import stats
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
res = stats.corr(x, y)
print(res.r, r.pvalue)- New econometric models
- Optimized C routines
- Documentation & examples
Open an issue or submit a pull request.
