Generalized Linear Models (GLM)
93 words
1 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Generalized Linear Models (GLM) ## 8.1 Components of a GLM 1. **Random component:** Distribution of $y$ (exponential family) 2.

Generalized Linear Models (GLM)
8.1 Components of a GLM
- Random component: Distribution of y (exponential family)
- Systematic component: Linear predictor η=Xβ
- Link function: g(μ)=η where μ=E[y]
8.2 Logistic Regression
For binary y: log(1−pp)=β0+β1x1+⋯+βkxk
Interpretation: eβj = odds ratio for a one-unit increase in xj.
8.3 Poisson Regression
For count y: log(λ)=β0+β1x1+⋯+βkxk where y∼Pois(λ).
Join Discord
PreviousVariable SelectionNextLogistic Regression