Uses of Class
org.apache.commons.math3.stat.regression.ModelSpecificationException
Packages that use ModelSpecificationException
Package
Description
Statistical routines involving multivariate data.
-
Uses of ModelSpecificationException in org.apache.commons.math3.stat.regression
Methods in org.apache.commons.math3.stat.regression that throw ModelSpecificationExceptionModifier and TypeMethodDescriptionvoidSimpleRegression.addData(double[][] data) Adds the observations represented by the elements indata.voidMillerUpdatingRegression.addObservation(double[] x, double y) Adds an observation to the regression model.voidSimpleRegression.addObservation(double[] x, double y) Adds one observation to the regression model.voidUpdatingMultipleLinearRegression.addObservation(double[] x, double y) Adds one observation to the regression model.voidMillerUpdatingRegression.addObservations(double[][] x, double[] y) Adds multiple observations to the model.voidSimpleRegression.addObservations(double[][] x, double[] y) Adds a series of observations to the regression model.voidUpdatingMultipleLinearRegression.addObservations(double[][] x, double[] y) Adds a series of observations to the regression model.MillerUpdatingRegression.regress()Conducts a regression on the data in the model, using all regressors.MillerUpdatingRegression.regress(int numberOfRegressors) Conducts a regression on the data in the model, using a subset of regressors.MillerUpdatingRegression.regress(int[] variablesToInclude) Conducts a regression on the data in the model, using regressors in array Calling this method will change the internal order of the regressors and care is required in interpreting the hatmatrix.SimpleRegression.regress()Performs a regression on data present in buffers and outputs a RegressionResults object.UpdatingMultipleLinearRegression.regress()Performs a regression on data present in buffers and outputs a RegressionResults objectUpdatingMultipleLinearRegression.regress(int[] variablesToInclude) Performs a regression on data present in buffers including only regressors indexed in variablesToInclude and outputs a RegressionResults objectConstructors in org.apache.commons.math3.stat.regression that throw ModelSpecificationExceptionModifierConstructorDescriptionMillerUpdatingRegression(int numberOfVariables, boolean includeConstant) Primary constructor for the MillerUpdatingRegression.MillerUpdatingRegression(int numberOfVariables, boolean includeConstant, double errorTolerance) This is the augmented constructor for the MillerUpdatingRegression class.