Open links in new tab
  1. Generalized Linear Models (GLMs) extend linear regression to handle different types of response variables by combining three components:

    1. Random Component – specifies the probability distribution of the response (e.g., Gaussian, Bernoulli, Poisson) from the exponential family.

    2. Systematic Component – a linear predictor, typically written as η = Xᵀβ.

    3. Link Function – a function g(μ) = η that relates the mean response μ = E(Y|X) to the linear predictor.

    Exponential Family Form A GLM assumes the density/mass function can be written as:

    f(y; θ, φ) = exp{ [yθ - b(θ)] / a(φ) + c(y, φ) }
    Copied!
    • θ: natural parameter

    • φ: dispersion parameter

    • b(θ): relates θ to the mean μ

    • a(φ): scales variance

    Common Examples

    • Gaussian: μ = η, identity link g(μ) = μ

    • Bernoulli: μ = p, logit link g(μ) = log(p/(1-p))

    • Poisson: μ > 0, log link g(μ) = log μ

    The canonical link sets η = θ, often simplifying estimation.

    Estimation via Maximum Likelihood Given samples (xᵢ, yᵢ), the log-likelihood for canonical link is:

    Feedback
    1. At this point, for generalized linear models, you can just think of it as short form for a linear combination of the predictors, = TX. From a broader perspective, we’re aiming to model a transformation of the …

    2. Introduction This short course provides an overview of generalized linear models (GLMs). We shall see that these models extend the linear modelling framework to variables that are not Normally …

    3. Lectures 21-24: Generalized Linear Models - MIT …

      Lecture Slides Lectures 21-24: Generalized Linear Models Resource Type: Lecture Notes pdf

    4. Note, in general, most common analyses can be approached from a “modelling” approach. Some such as the log-linear and logistic are topics for this class. Why do we want to “model” data? The structural …

    5. In this lecture we extend the ideas of linear regression to the more general idea of a generalized linear model (GLM).

    6. Statistics and Population - GitHub Pages

      The lecture notes are offered in two formats: HTML and PDF. I expect most of you will want to print the notes, in which case you can use the links below to access the PDF file for each chapter.

    7. Slides adapted from lectures by Prof. Yue Jiang. This is not a mathematical statistics class. There are semester-long (and multiple semester-long) courses on these topics, and so what we cover in just …

    8. mation g(·) and focus on ηi = g(μi), where g(·) will be called the link function and ηi the linear predictor. We assume that the transformed mean follows a linear model, ηi = x0 iβ. Since the link function is …

    9. Generalized Linear Models (GLMs) Dr. Guangliang Chen This lecture is based on the following textbook sections:

  2. People also ask