Differences between revisions 4 and 6 (spanning 2 versions)
Revision 4 as of 2025-01-10 14:29:41
Size: 1199
Comment: Killing Econometrics page
Revision 6 as of 2025-08-06 01:20:05
Size: 1361
Comment: Simplification
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
The distribution can be any [[Statistics/ProbabilityNotation#Probability_density_functions|PDF]]. The distribution can be any p.f.
Line 29: Line 29:
To estimate the parameters of the model (i.e., the coefficients), [[Statistics/MaximumLikelihoodEstimation|maximum likelihood]] methods are usually used and solved with [[Statistics/IterativelyReweightedLeastSquares|IRLS]].

Generalized Linear Model

A generalized linear model (GLM) is a generalized modeling method.


Design

A GLM has three components.

  1. A distribution to characterize outcomes.

  2. A linear model to relate an outcome with one or more independent variable(s).

  3. A link function to relate the linear model with expected outcomes.

The distribution can be any p.f.

The link function generally is a non-linear transformation, such as a logarithm. It is also typically stated and notated as a function g, as in g(E[y|X]) = Xb. It could equivalently be stated like E[y|X] = g-1(Xb), which can be a more straightforward approach, but the other orientation is simpler for interpretation.

As an example, OLS is a particular form of a GLM where:

  • outcomes are assumed to be normally distributed

  • outcomes are linearly modeled like y = Xb

  • a link function of 1 is implicitly used

To estimate the parameters of the model (i.e., the coefficients), maximum likelihood methods are usually used and solved with IRLS.


CategoryRicottone

Statistics/GeneralizedLinearModel (last edited 2026-02-17 15:28:53 by DominicRicottone)