I
- type of independent dataD
- type of dependent datapublic interface EstimatableModel<I,D> extends Model<I,D>, Cloneable
Model
that allows the model to be estimated from a
series of observations of both the independent and dependent variables.Modifier and Type | Method and Description |
---|---|
EstimatableModel<I,D> |
clone()
Clone the model
|
boolean |
estimate(List<? extends IndependentPair<I,D>> data)
Estimates the model from the observations in the list of data.
|
int |
numItemsToEstimate() |
boolean estimate(List<? extends IndependentPair<I,D>> data)
numItemsToEstimate()
pairs of dependent
and independent data. It may contain more, in which case the estimate
method may choose to make use of this data for validation, or obtaining a
better model by a least squares method for example.data
- Data with which to estimate the modelnumItemsToEstimate()
int numItemsToEstimate()
EstimatableModel<I,D> clone()