Skip to content

Commit

Permalink
Initial commit on higher dimension regression
Browse files Browse the repository at this point in the history
  • Loading branch information
bashtage committed Jul 21, 2019
1 parent 32011b6 commit cd583c5
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions statsmodels/multivariate/regression.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
class PLSReg(object):
def __init__(self, endog, exog, ncomp=None, standardize=True):
pass

def fit(self, method='nipals'):
pass


class PCAReg(object):
def __init__(self, endog, exog, ncomp=None, standardize=True):
pass

def fit(self, method='svd'):
pass


class RegularizedReducedRankReg(object):
def __init__(self, endog, exog, ncomp=None, method='svd',
standardize=True):
pass

def fit(self, regularization='spectral'):
pass


class ThreePassReg(object):
def __init__(self, endog, exog, instr, ncomp=None, ninstr=None,
standardize=True):
pass

def fit(self):
pass

0 comments on commit cd583c5

Please sign in to comment.