Intercepts-comparisons versus means
This exercise will show you how R's formulas allow two types of intercepts to be estimated. You will use data for the number of goals per game for two players, "Scoring Sam" and "Unlucky Lou". Because these are counts, use a glm()
with a Poisson family.
First, fit a model that estimates an intercept and the difference between the two players. This is the default formula option in R and looks like formula = response ~ intercept
.
Second, fit a model that estimates the effect (or intercept) of both players. This formula option in R requires a - 1
, for example formula = response ~ intercept - 1
.
Cet exercice fait partie du cours
Generalized Linear Models in R
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Fit a glm() that estimates the difference between players
summary(glm(___))