Skip to content

Commit

Permalink
Merge 6affdc6 into 01fd4a2
Browse files Browse the repository at this point in the history
  • Loading branch information
josef-pkt committed Dec 19, 2013
2 parents 01fd4a2 + 6affdc6 commit 62f69f6
Show file tree
Hide file tree
Showing 24 changed files with 9,954 additions and 5 deletions.
1 change: 1 addition & 0 deletions statsmodels/api.py
Expand Up @@ -4,6 +4,7 @@
from .regression.linear_model import OLS, GLS, WLS, GLSAR
from .regression.quantile_regression import QuantReg
from .genmod.generalized_linear_model import GLM
from .genmod.generalized_estimating_equations import GEE
from .genmod import families
import robust
from .robust.robust_linear_model import RLM
Expand Down
3 changes: 2 additions & 1 deletion statsmodels/formula/api.py
Expand Up @@ -22,4 +22,5 @@
negativebinomial = NegativeBinomial.from_formula
from statsmodels.regression.quantile_regression import QuantReg
quantreg = QuantReg.from_formula

from statsmodels.genmod.generalized_estimating_equations import GEE
gee = GEE.from_formula
7 changes: 7 additions & 0 deletions statsmodels/genmod/dependence_structures/__init__.py
@@ -0,0 +1,7 @@
'''
This module contains dependence structures for fitting models using
generalized estimating equations (GEE).
'''

from covstruct import Independence, Exchangeable, GlobalOddsRatio,\
Autoregressive, Nested, CovStruct

0 comments on commit 62f69f6

Please sign in to comment.