Hi Chris,
This isn’t a problem in general, but you are using very extreme covariate values. When a covariate takes on such extreme values, it causes numerical problems on the logit scale, making it hard for the optimizer to find the MLEs. For example, if you fiddle around with this code you will see how sensitive the response is to small changes in beta1:
beta0 <- -1
beta1 <- 0.01
x <- 1e6*rnorm(100) # covariate with extreme values
plogis(beta0 + beta1*x)
The solution is to avoid extreme covariate values by using a z-transformation or similar. This is true for most GLM-type models, not just the models in unmarked.
Richard
--
You received this message because you are subscribed to the Google Groups "unmarked" group.
To unsubscribe from this group and stop receiving emails from it, send an email to unmarked+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

library("unmarked")data(frogs)umf <- unmarkedFrameOccu(pfer.bin)
# Get estimate of occupancy with no observational covariatesfm <- occu(~ 1 ~ 1, umf)psi0 <- backTransform(fm["state"])@estimateset.seed(12345)g = boxplot(
sapply(10^(1:6), function (multiplier) {sapply(1:10, function (X) {
y <- multiplier * rnorm(numSites(umf) * obsNum(umf))y <- (y-mean(y))/sd(y)obsCovs(umf) <- data.frame(obsvar1 = y)
fm <- occu(~ obsvar1 ~ 1, umf)backTransform(fm["state"])@estimate})}),xlab="power on obsCov multiplier", ylab="occupancy estimate")
lines(c(0,7), psi0*c(1,1), col="red", lwd=3)
