I can't resolve a message error in my logit model.
This is my data:
My dummy variable is CreativeOutputs
. All variables are numeric and without NA.
My code for the logit model:
logit2 <- glm(CreativeOutputs ~. , family=binomial(link="logit"), data=b )
The error message:
logit2 <- glm(CreativeOutputs ~. , family=binomial(link="logit"), data=b ) Error in terms.formula(formula, data = data) : attempt to use zero-length variable name
Any solution?