Extracting coefficients from glm()
Sometimes, we specifically care about model coefficients and their confidence intervals.
The coef()
function extracts coefficients and confint()
extracts the confidence intervals.
These functions work the same for both linear and generalized linear models.
The GLM you fit in the previous exercise (poisson_out
) has been loaded for you.
Este ejercicio forma parte del curso
Generalized Linear Models in R
Instrucciones del ejercicio
- Using
coef()
, extract the regression coefficients frompoisson_out
. - Using
confint()
, extract the confidence intervals for the regression coefficients frompoisson_out
.
Ejercicio interactivo práctico
Prueba este ejercicio completando el código de muestra.
# Extract the regression coefficients
___
# Extract the confidence intervals
___