repicea.stats.estimators.Estimator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of repicea-mathstats Show documentation
Show all versions of repicea-mathstats Show documentation
Mathematical and statistical methods
/*
* This file is part of the repicea library.
*
* Copyright (C) 2009-2022 Mathieu Fortin for Rouge-Epicea
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed with the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* Please see the license at http://www.gnu.org/copyleft/lesser.html.
*/
package repicea.stats.estimators;
import java.util.ArrayList;
import java.util.List;
import repicea.math.Matrix;
import repicea.math.SymmetricMatrix;
import repicea.stats.data.DataSet;
import repicea.stats.estimates.Estimate;
public interface Estimator {
/**
* The EstimatorException class encompasses all the exception that can be thrown when the
* optimizer fails to reach convergence.
* @author Mathieu Fortin - November 2015
*/
public static class EstimatorException extends Exception {
private static final long serialVersionUID = 20110614L;
public EstimatorException(String message) {
super(message);
}
}
/**
* Run the estimation process.
* @return true if the estimation was successful or false otherwise
* @throws EstimatorException if an estimation error has occurred
*/
public boolean doEstimation() throws EstimatorException;
/**
* This method returns true if the estimator successfully estimated the parameters.
* @return a boolean
*/
public boolean isConvergenceAchieved();
/**
* This method returns the parameter estimates.
* @return an Estimate instance
*/
public Estimate getParameterEstimates();
/**
* Produces a DataSet instance with the convergence status.
* @return a DataSet instance
*/
public DataSet getParameterEstimatesReport();
/**
* Produces a DataSet instance with the convergence status.
* @return a DataSet instance
*/
public default DataSet getConvergenceStatusReport() {
List fieldNames = new ArrayList();
fieldNames.add("Element");
fieldNames.add("Value");
DataSet dataSet = new DataSet(fieldNames);
Object[] record = new Object[2];
record[0] = "Converged";
record[1] = isConvergenceAchieved();
dataSet.addObservation(record);
return dataSet;
}
/**
* Provides the report on the convergence and parameter estimates.
*
* @return a long String containing the report
*/
public default String getReport() {
if (!isConvergenceAchieved()) {
return "The convergence has not been achieved.";
} else {
StringBuilder sb = new StringBuilder();
DataSet convergenceDataset = getConvergenceStatusReport();
sb.append(convergenceDataset.toString() + System.lineSeparator());
DataSet parameterDataset = getParameterEstimatesReport();
sb.append(parameterDataset.toString() + System.lineSeparator());
return sb.toString();
}
}
}