X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=pkg%2FR%2Futils.R;h=a4efd615bd6dd2e1ca41583129114dd94d06a462;hb=cf3bb00128ac8cb930996455faf7c99a3fc102fb;hp=b0d0ae00679a5dcaf7d282d7d45002bce989b453;hpb=689aa1d3c58e8b1e9fdfa9b895ca38c7228f56cc;p=talweg.git diff --git a/pkg/R/utils.R b/pkg/R/utils.R index b0d0ae0..a4efd61 100644 --- a/pkg/R/utils.R +++ b/pkg/R/utils.R @@ -118,7 +118,7 @@ getSimilarDaysIndices = function(index, data, limit, same_season, days_in=NULL) # getNoNA2 # -# Get indices in data of no-NA series followed by no-NA, within [first,last] range. +# Get indices in data of no-NA series preceded by no-NA, within [first,last] range. # # @inheritParams dateIndexToInteger # @param first First index (included) @@ -127,6 +127,6 @@ getSimilarDaysIndices = function(index, data, limit, same_season, days_in=NULL) .getNoNA2 = function(data, first, last) { (first:last)[ sapply(first:last, function(i) - !any( is.na(data$getCenteredSerie(i)) | is.na(data$getCenteredSerie(i+1)) ) + !any( is.na(data$getSerie(i-1)) | is.na(data$getSerie(i)) ) ) ] }