|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
The interface implemented by general linear models.
Method Summary | |
VectorI |
getCoefficients()
Returns the solution coefficients. |
VectorI |
getDependent()
Returns the dependent vector. |
int |
getDFE()
Returns the number of degrees of freedom for the errors. |
int |
getDFR()
Returns the number of degrees of freedom for the regression. |
int |
getDFT()
Returns the total number of degrees. |
MatrixI |
getIndependent()
Returns the independent matrix. |
MatrixI |
getInverseXX()
Returns the X'X inverse matrix. |
double |
getMSE()
Returns the mean of the squares of the error terms. |
double |
getMSR()
Returns the mean of the squares of the computed dependent values. |
double |
getMST()
Returns the mean of the squares of the sampled dependent values. |
double |
getRSquared()
Returns R^2. |
double |
getSSE()
Returns the sum of the squares of the error terms. |
double |
getSSR()
Returns the sum of the squares of the computed dependent values. |
double |
getSST()
Returns the sum of the squares of the sampled dependent values. |
VectorI |
getStandardErrors()
Returns the standard errors of the fitted independent variables. |
VectorI |
solve()
Solve for the fitting coefficients using all of the independent variables. |
VectorI |
solve(boolean forceZeroIntercept)
Solve for the fitting coefficients using all of the independent variables. |
VectorI |
solve(boolean forceZeroIntercept,
int[] columnSelection)
Solve for the coefficients using only the dependent columns listed in 'columnSelection'. |
Method Detail |
public VectorI solve()
public VectorI solve(boolean forceZeroIntercept)
public VectorI solve(boolean forceZeroIntercept, int[] columnSelection)
public VectorI getDependent()
public MatrixI getIndependent()
public VectorI getCoefficients()
public VectorI getStandardErrors()
public MatrixI getInverseXX()
public double getRSquared()
public double getSST()
public double getSSE()
public double getSSR()
public int getDFR()
public int getDFE()
public int getDFT()
public double getMST()
public double getMSE()
public double getMSR()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |