public interface LinearRegressionPredictor
| Modifier and Type | Method and Description |
|---|---|
default List<LinearRegressionPrediction> |
predict(Matrix observations)
Predict a series of responses, one for each row in the observation matrix.
|
List<LinearRegressionPrediction> |
predict(Matrix observations,
double alpha)
Predict a series of responses, one for each row in the observation matrix.
|
default LinearRegressionPrediction |
predict(Vector observation)
Predict a response using the given observation, with a default significance level of 0.05.
|
LinearRegressionPrediction |
predict(Vector observation,
double alpha)
Predict a response using the given observation and significance level.
|
LinearRegressionPrediction predict(Vector observation, double alpha)
observation - the new observation.alpha - the significance level.default LinearRegressionPrediction predict(Vector observation)
observation - the new observation.List<LinearRegressionPrediction> predict(Matrix observations, double alpha)
observations - the new observations.alpha - the significance level.default List<LinearRegressionPrediction> predict(Matrix observations)
observations - the new observations.