Hi Andy,
Did you ever figure out what caused this? I seem to be having a similar issue currently. Ran on both version 0.12-3 and 1.0.0
> fmRNnull <- occuRN(~1 ~1,data=c.umf,K=40,method="BFGS",se=TRUE)
>
> fitstats <- function(Mod_global2) {
+ observed <- getY(Mod_global2@data)
+ expected <- fitted(Mod_global2)
+ resids <- residuals(Mod_global2)
+ sse <- sum(resids^2,na.rm=TRUE)
+ chisq <- sum((observed - expected)^2 / expected,na.rm=TRUE)
+ freeTuke <- sum((sqrt(observed) - sqrt(expected))^2,na.rm=TRUE)
+ out <- c(SSE=sse, Chisq=chisq, freemanTukey=freeTuke)
+ return(out)
+ }
> pb <- parboot(fmRNnull, fitstats, nsim=10000, report=1)
In addition: Warning messages:
1: In truncateToBinary(object@data@y) :
Some observations were > 1. These were truncated to 1.
2: In truncateToBinary(y) :
Thanks!
- Tyler