Skip to content

pecon-devs/pecon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


A Lightweight Econometrics Library in C & Cython

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.


✨ Features

  • 🚀 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

🛠 Installation

pip install pecon

Development (Editable Install)

After cloning the repo

pip install -e .

🚀 Quick Start

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)

🤝 Contributing

Contributions are welcome:

  • New econometric models
  • Optimized C routines
  • Documentation & examples

Open an issue or submit a pull request.

About

A Lightweight Econometrics Library for Python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •