The poisson regression looks as follows in My R-code:
poissmod <- glm(aerobics$y ~ factor(aerobics$x1) + factor(aerobics$x2) + aerobics$x3 + aerobics$x4, family = poisson)
poissmod
Now I have to compute a confidence interval for the factor aerobics$x1
(in a model without aerobics$x1
since this is not significant).
This might look very easy, but I am not familiar with R and I can 't find the answer anywhere...
Anyone who can help me?
Thanks a lot in advance!