I am running logistic regression, my dependent variable is binomial (HeardTB "Yes", "No"), but i got only one response ("Yes"). I want to run logistics regression with independent variables, (Age, Sex, Education, Experience, Occupation. P values are not promising and Odd Ratio gives an error. See the attached.
hailogits <- glm(HeardTB ~ Sex + Age + Marital + Education + Occupation + Experience, data = Rhelp, family = "binomial")
summary(hailogits)
exp(cbind(OR = coef(hailogits), confint(hailogits)))