When I use a GLM using R, my standard errors are ridiculously high. It can't be because the independent variables are related because they are all distinct ratings for an individual (i.e., interaction variables are out of the picture). Any idea on what is causing this?
Below is the contingency table and glm summary:
swagtype
has.gc.swag A B C D
FALSE 1 22 71 49
TRUE 0 1 2 5
summary(glm(has.gc.swag~swagtype, family=binomial, data=tt.dataset))
...
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) -15.57 1455.40 -0.011 0.991
swagtypeB 12.48 1455.40 0.009 0.993
swagtypeC 12.00 1455.40 0.008 0.993
swagtypeD 13.28 1455.40 0.009 0.993
Note: I use swagtype
instead of the real name since the info I am dealing with is confidential.