Get startedGet started for free

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.

This exercise is part of the course

Generalized Linear Models in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Fit a glm() that estimates the difference between players
summary(glm(___))
Edit and Run Code