I am running a generalized linear model. The dependent variable is binomial and independent variables are categorical and continuous variables. My question is : 1. Does the continuous independent variable have to be normally distributed? 2. Do I need to check for the normality of residuals of the continuous variables?
These are images of the model residuals. The model is as follows.
B and A are categorical variables with two levels each and F is continuous.
t1<-glm(B ~ A + F, family = binomial, data = d, na.action = "na.fail")
sm<-standardize(t1)
model.set<-dredge(sm)
model.set
top.model<-get.models(model.set, subset=delta<2)
top.model
#model averaging
u<-summary(model.avg(top.model), revised.var = T)
u
confint(u, full = T)
plot(density(resid(t1)))
qqnorm(resid(t1))
qqline(resid(t1))
@Harlan Nelson, I have added the graphs.