|
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.glm.GeneralizedLinearModel
public class GeneralizedLinearModel
The Generalized Linear Model (GLM) is a flexible generalization of ordinary least squares regression. The GLM generalizes linear regression by allowing the linear model to be related to the response variable via a link function and by allowing the magnitude of the variance of each measurement to be a function of its predicted value.
In a GLM, each outcome of the dependent variables, Y, is assumed to be generated from a particular distribution in the exponential family, a large range of probability distributions that includes the normal, binomial and Poisson distributions, among others. The mean, μ, of the distribution depends on the independent variables, X, through
E(Y) = μ = g-1(Xβ)
where E(Y) is the expected value of Y;
Xβ is the linear predictor, a linear combination of unknown parameters, β;
g is the link function.
The R equivalent function is glm.
| Field Summary | |
|---|---|
double |
AIC
|
Beta |
beta
the GLM coefficients β^ statistics |
GlmProblem |
problem
the generalized linear regression problem to be solved |
Residuals |
residuals
the residual analysis of this GLM regression |
| Constructor Summary | |
|---|---|
GeneralizedLinearModel(GlmProblem problem)
Solve a generalized linear problem using the Iterative Re-weighted Least Squares algorithm. |
|
GeneralizedLinearModel(GlmProblem problem,
Fitting fitting)
Construct a GeneralizedLinearModel instance. |
|
| Method Summary |
|---|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public final GlmProblem problem
public final Beta beta
public final Residuals residuals
public final double AIC
| Constructor Detail |
|---|
public GeneralizedLinearModel(GlmProblem problem,
Fitting fitting)
problem - the generalized linear regression problem to be solvedfitting - the fitting method, c.f., Fittingpublic GeneralizedLinearModel(GlmProblem problem)
problem - the generalized linear regression problem to be solved
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||