Skip to content

SepineTam/DeepEcon

Repository files navigation

DeepEcon

DeepEcon:Your one-stop Python package for econometric algorithms

en cn PyPI version PyPI Downloads License: MIT Issue Ask DeepWiki

If you need support for a new econometric algorithm or have an idea for an implementation, please submit your request via GitHub Issues. After evaluation, we'll add it to our DEVPLAN for future releases.

Quickly Start

Install from Pypi

pip install deepecon

Run a regression

from deepecon.estimators import OLS
import pandas as pd

df: pd.DataFrame
y_col = 'y'
X_cols = ['x1', 'x2', 'x3']

ols = OLS(df)
result = ols(y_col, X_cols)

Roadmap

View the roadmap here.

License

MIT License

Star History

Star History Chart

About

DeepEcon: Your one-stop Python package for econometric algorithms.

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages