Fitting a Poisson GLM to Territory / Vehicle-Age Claim Frequency
Fit a log-link Poisson GLM to a small personal-auto rating grid, interpret coefficients, and use deviance to test significance.
Background
Meridian Mutual's pricing team is refreshing personal-auto claim-frequency relativities for two rating variables: Territory (Urban vs. Rural) and Vehicle Age (New vs. Old, where "Old" means model year 6+). A pricing analyst pulled one accident year of earned exposure and reported claim counts for the four cells formed by crossing these two variables:
| Territory | Vehicle Age | Earned exposure | Claim count | Raw frequency |
|---|---|---|---|---|
| Urban | New | 1,200 | 108 | 0.0900 |
| Urban | Old | 900 | 117 | 0.1300 |
| Rural | New | 800 | 40 | 0.0500 |
| Rural | Old | 700 | 49 | 0.0700 |
Portfolio-wide frequency is claims per exposure. The raw cell frequencies suggest Rural business runs lighter than Urban, and Old vehicles run heavier than New, but the analyst wants a multiplicative structure that can be extended to many more variables without a combinatorial explosion of cells β the textbook motivation for a generalized linear model.
Model specification
The analyst fits a Poisson GLM with a log link and an exposure offset, so that expected claim counts are
where is the exposure in cell and Urban/New is the baseline level absorbed into . This is equivalent to β the offset is added to the linear predictor with a coefficient fixed at 1, which is the standard GLM device for modeling a rate while keeping the response a Poisson count.
Fitting this saturated model (4 cells, 3 free parameters plus the fixed offset β one fewer than the number of cells, since a full interaction term would make it exactly saturated) by iteratively reweighted least squares gives:
| Parameter | Estimate | (relativity) |
|---|---|---|
| Intercept () | β (Urban/New base frequency ) | |
| Rural () | ||
| Old () |
The fitted expected counts are:
| Cell | Fitted count | Actual count |
|---|---|---|
| Urban/New | 108.49 | 108 |
| Urban/Old | 116.51 | 117 |
| Rural/New | 39.51 | 40 |
| Rural/Old | 49.49 | 49 |
The fitted relativities say a Rural risk has the frequency of an otherwise-identical Urban risk (a 46% discount), and an Old vehicle has the frequency of an otherwise-identical New vehicle (a 43% surcharge), holding the other factor fixed β this is exactly the "holding all else equal" interpretation that a GLM provides and a one-way (univariate) analysis cannot, because a univariate Rural/Urban split would be confounded by the fact that Rural business happens to skew towards newer vehicles in this book.
Deviance and goodness of fit
The model's residual deviance is on degree of freedom (this model has one fewer parameter than cells, so it is nearly saturated and fits almost perfectly by construction). The null deviance (intercept-only model, i.e. every cell predicted at the overall frequency) is on degrees of freedom. The drop in deviance from adding Territory and Rural,
is large relative to a reference distribution (the 99th percentile of is about ), so both rating variables are statistically significant contributors to explaining claim frequency in this data β consistent with, but not proof of, causal risk differentiation (omitted-variable confounding with e.g. annual mileage or driver age is always possible with only two rating variables).
Your task
You are reviewing this GLM output for the rate filing. Treat the fitted coefficients, relativities and deviance figures above as given (do not refit). Answer the questions below using GLM theory and the specific numbers in this case.
Part A β Multiple choice (6 Γ 1 point)
In the Poisson GLM , what role does (earned exposure) play?
The fitted Rural relativity is . What is the correct interpretation?
Why is the Poisson distribution (rather than Normal/OLS) the natural choice for modeling claim counts here?
The drop in deviance from the null model to the fitted model is on degrees of freedom. What does comparing this to a distribution test?
A one-way univariate analysis (ignoring vehicle age) shows Rural frequency vs Urban , a raw ratio of β close to, but not identical to, the GLM's multivariate relativity of . What actuarial concept explains the small remaining difference?
If the analyst instead fit this model with a log link but Gamma error distribution, what would typically change about its suitability here?
Part B β Written response
Explain, using the specific numbers in this case, why a multivariate GLM relativity for Territory can differ from a univariate one-way relativity, and why an actuary should generally prefer the multivariate estimate for ratemaking.
The fitted model in this case has 3 parameters for 4 cells (one degree of freedom of residual deviance). Discuss the practical limitation this creates for assessing goodness-of-fit here, and describe how a real ratemaking GLM with dozens of rating variables and thousands of cells avoids this problem.