DeepEcon:Your one-stop Python package for econometric algorithms
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.
pip install deepeconfrom 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)View the roadmap here.