Package edu.cmu.tetrad.regression
Interface Regression
- All Known Implementing Classes:
- RegressionCovariance,- RegressionDataset
public interface Regression
Implements a multiple regression model, allowing data to be specified
 either as a tabular data set or as a covariance matrix plus list of means.
- Author:
- Joseph Ramsey
- 
Method Summary
- 
Method Details- 
setAlphavoid setAlpha(double alpha) Sets the significance level at which coefficients are judged to be significant.- Parameters:
- alpha- the significance level.
 
- 
getGraphGraph getGraph()- Returns:
- This graph.
 
- 
regressRegressestargeton theregressors, yielding a regression plane.- Parameters:
- target- the target variable, being regressed.
- regressors- the list of variables being regressed on.
- Returns:
- the regression plane.
 
- 
regressRegressestargeton theregressors, yielding a regression plane.- Parameters:
- target- the target variable, being regressed.
- regressors- the list of variables being regressed on.
- Returns:
- the regression plane.
 
 
-