Skip to content

Commit 765cac7

Browse files
authored
Update overlapping.R
1 parent ab1d523 commit 765cac7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

R/overlapping.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,9 @@ c.F4 <- function(data) {
246246

247247
data <- ovo(data)
248248
aux <- mapply(function(d) {
249-
(nrow(d) - nrow(removing(d)))/nrow(d)
249+
nrow(removing(d))/nrow(d)
250250
}, d=data)
251251

252-
aux <- 1 - mean(aux)
252+
aux <- mean(aux)
253253
return(aux)
254254
}

0 commit comments

Comments
 (0)