I'm getting an unexpected fatal error in weib.limit() when there are many repeated first measures.
For example, when I run weib.limit(rep(157,50)), I get the usual warning message about applying a correction when there are repeated earliest measurements, but also a new error reading:
Error in if (theta < ci[1] | theta > ci[2]) { : missing value where TRUE/FALSE needed
This does not happen for every case with when there are repeated earliest measurements. For example, weib.limit(rep(c(157,160,180),each=3)) does not experience the fatal error.
This appears to be happening in the "# Check for tail vs. centre of distribution issues" section which was added recently.
I'm getting an unexpected fatal error in
weib.limit()when there are many repeated first measures.For example, when I run
weib.limit(rep(157,50)), I get the usual warning message about applying a correction when there are repeated earliest measurements, but also a new error reading:Error in if (theta < ci[1] | theta > ci[2]) { : missing value where TRUE/FALSE neededThis does not happen for every case with when there are repeated earliest measurements. For example,
weib.limit(rep(c(157,160,180),each=3))does not experience the fatal error.This appears to be happening in the "# Check for tail vs. centre of distribution issues" section which was added recently.