NA for confidence interval

Hello

I have some trouble getting a right confidence interval for my data.
I have a first binary variable : hypo2 and 2 others binary variables p10 and s10.
When I try this piece of code, I have a NA value for superior value of confidence interval.

glm_res2 <- glm(hypo2~p10+s10, data = dataN2, family = binomial)
summary(glm_res2)
confint(glm_res2)

image

Do you have some ideas to explain why it happens and what I can do to overpass this issue ?

Thank you

It's just a guess, but confidence intervals for glm are based on profiled likelihoods, and I guess due to the large standard errors, it's difficult to retrieve a valid value here. You may try Wald-based confidence intervals, e.g. using the parameters package: parameters::ci(model, method = "wald").

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.