I'm trying to run ordered logit regression using the mass package and I keep coming up with this error message in R. I'm running the model
fit2 <- polr(level ~ pvi + enrollment, data = schools, Hess = TRUE)
summary(fit2)
But this gives me the error Error in svd(X) : infinite or missing values in 'x'
If I run the same model with just level and pvi I don't get any errors. Enrollment is an integer variable that goes from about 50-50,000 and there's no missing data.