I tried to construct a generalized linear model in R.
I receive the following output below with the error "fitted probabilities numerically 0 or 1 occurred". I am wondering is this due to complete separation? My intercepts and standard errors are not very large and I am wondering is this error due to something else?
best <- glm(y ~ p1 + p2 + p3, family = binomial)
glm.best: fitted probabilities numerically 0 or 1 occurred
max(abs(beta))
is less than 2; values of e.g. 8 or higher start to indicate problems) and the standard errors are also reasonable. – Borroff