Class LogisticBeta
- java.lang.Object
-
- dev.nm.stat.regression.linear.LMBeta
-
- dev.nm.stat.regression.linear.logistic.LogisticBeta
-
public class LogisticBeta extends LMBeta
Beta coefficient estimator, β^, of a logistic regression model.
-
-
Constructor Summary
Constructors Constructor Description LogisticBeta(Vector betaHat, LogisticResiduals residuals)
Construct an instance ofBeta
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableMatrix
covariance()
Gets the covariance matrix of the coefficient estimates, β^.
-
-
-
Constructor Detail
-
LogisticBeta
public LogisticBeta(Vector betaHat, LogisticResiduals residuals)
Construct an instance ofBeta
.- Parameters:
betaHat
- β^ of a logistic regressionresiduals
- the residuals of a logistic regression
-
-
Method Detail
-
covariance
public ImmutableMatrix covariance()
Description copied from class:LMBeta
Gets the covariance matrix of the coefficient estimates, β^.- Specified by:
covariance
in classLMBeta
- Returns:
- the covariance matrix of the coefficient estimates, β^
-
-