Skip to content
Snippets Groups Projects
Commit 56c0458e authored by Christophe  BOETTO's avatar Christophe BOETTO
Browse files

fixed indent error

parent 3f91d376
Branches
No related tags found
No related merge requests found
...@@ -19,9 +19,6 @@ warnings.filterwarnings('ignore') ...@@ -19,9 +19,6 @@ warnings.filterwarnings('ignore')
class MANOCCA: class MANOCCA:
def __init__(self, predictors, outputs, covariates=None, cols_outputs = None,
cols_predictors = None, cols_covariates = None, prodV_red=None, n_comp = None, prod_to_keep = None, use_resid = True, n_jobs = 1):
""" Class performing a covariance test between a set of outputs, predictors and covariates. """ Class performing a covariance test between a set of outputs, predictors and covariates.
For a sample of N, given a set of k outputs Y , n_p predictors X, and n_c covariates C the class performs the test : Y ~ X + C For a sample of N, given a set of k outputs Y , n_p predictors X, and n_c covariates C the class performs the test : Y ~ X + C
...@@ -101,6 +98,8 @@ class MANOCCA: ...@@ -101,6 +98,8 @@ class MANOCCA:
""" """
def __init__(self, predictors, outputs, covariates=None, cols_outputs = None,
cols_predictors = None, cols_covariates = None, prodV_red=None, n_comp = None, prod_to_keep = None, use_resid = True, n_jobs = 1):
### Initializing ### Initializing
self.outputs = outputs self.outputs = outputs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment