|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.numericalmethod.suanshu.stats.regression.linear.Beta
public abstract class Beta
Beta coefficients are the outcomes of fitting a linear regression model. β are the coefficients of a linear model. Its estimation is β^.
Statistics of the β^ coefficients are also included:
standard error and covariance matrix.
| Field Summary | |
|---|---|
ImmutableVector |
betaHat
the coefficient estimates, β^ |
ImmutableMatrix |
covariance
the covariance matrix of the coefficient estimates, β^ |
ImmutableVector |
stderr
the standard errors of the coefficients β^ |
| Constructor Summary | |
|---|---|
protected |
Beta(Vector betaHat,
Matrix covariance,
Vector stderr)
Construct an instance of Beta. |
| Method Summary |
|---|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public final ImmutableVector betaHat
public final ImmutableMatrix covariance
public final ImmutableVector stderr
| Constructor Detail |
|---|
protected Beta(Vector betaHat,
Matrix covariance,
Vector stderr)
betaHat - the coefficient estimates, β^covariance - the covariance matrix of the coefficient estimates, β^stderr - the standard errors of the coefficients β^
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||