public interface StatisticalModel<P extends StatisticalDataStructure>
Modifier and Type | Method and Description |
---|---|
void |
doEstimation()
This method computes the parameter estimates.
|
CompositeLogLikelihood |
getCompleteLogLikelihood()
This method returns the model log-likelihood function.
|
double |
getConvergenceCriterion()
This method returns the value of the convergence criterion.
|
P |
getDataStructure()
This method returns the data structure.
|
Estimator |
getEstimator()
This method returns the optimizer of the log-likelihood function.
|
java.lang.String |
getModelDefinition()
This method returns the model definition as entered by the user.
|
Matrix |
getParameters() |
Matrix |
getPredicted()
This method returns a vector of predicted values.
|
Matrix |
getResiduals()
This method returns a vector of residuals, that is observed values minus predictions.
|
void |
getSummary()
This method returns the results of the fit on screen.
|
void |
setParameters(Matrix beta) |
CompositeLogLikelihood getCompleteLogLikelihood()
void setParameters(Matrix beta)
Matrix getParameters()
void getSummary()
Matrix getPredicted()
Matrix getResiduals()
void doEstimation()
java.lang.String getModelDefinition()
double getConvergenceCriterion()
Estimator getEstimator()
P getDataStructure()