Hi @vagudets, @abatalla, @tkariyat,
I have just fixed a small bug in .RandomWalkTest
when A_better
or N.eff
is NA
(e.g. in the case that the time series are all NAs).
Error in if (!is.na(output$score) & N.eff >= A_better) { :
missing value where TRUE/FALSE needed
Basically, I have replaced N.eff >= A_better
with isTRUE(N.eff >= A_better)
. Then, the error does not arise, and the significance is returned as NA
. This is the commit: 4fb8076f
Could you please review and merge when you have time?
Thank you!
Carlos