search for: any0

Displaying 4 results from an estimated 4 matches for "any0".

Did you mean: any
2015 Mar 03
2
[R] Why does R replace all row values with NAs
...namespace hidden for a while [note the comment of the last one!] and using them for readibility in its own code. Maybe we should (again) consider providing some versions of these with R ? The Matrix package also has had fast allFalse <- all0 <- function(x) .Call(R_all0, x) anyFalse <- any0 <- function(x) .Call(R_any0, x) ## ## anyFalse <- function(x) isTRUE(any(!x)) ## ~= any0 ## any0 <- function(x) isTRUE(any(x == 0)) ## ~= anyFalse namespace hidden as well, already, which probably could also be brought to base R. One big reason to *not* go there (to internal C c...
2015 Mar 03
2
[R] Why does R replace all row values with NAs
...d using them for readibility in its own code. >> >> Maybe we should (again) consider providing some versions of >> these with R ? >> >> The Matrix package also has had fast >> >> allFalse <- all0 <- function(x) .Call(R_all0, x) >> anyFalse <- any0 <- function(x) .Call(R_any0, x) >> ## >> ## anyFalse <- function(x) isTRUE(any(!x)) ## ~= any0 >> ## any0 <- function(x) isTRUE(any(x == 0)) ## ~= anyFalse >> >> namespace hidden as well, already, which probably could also be >> brought...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...omment of the last one!] > and using them for readibility in its own code. > > Maybe we should (again) consider providing some versions of > these with R ? > > The Matrix package also has had fast > > allFalse <- all0 <- function(x) .Call(R_all0, x) > anyFalse <- any0 <- function(x) .Call(R_any0, x) > ## > ## anyFalse <- function(x) isTRUE(any(!x)) ## ~= any0 > ## any0 <- function(x) isTRUE(any(x == 0)) ## ~= anyFalse > > namespace hidden as well, already, which probably could also be > brought to base R. > > One big reas...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...its own code. >>> >>> Maybe we should (again) consider providing some versions of >>> these with R ? >>> >>> The Matrix package also has had fast >>> >>> allFalse <- all0 <- function(x) .Call(R_all0, x) >>> anyFalse <- any0 <- function(x) .Call(R_any0, x) >>> ## >>> ## anyFalse <- function(x) isTRUE(any(!x)) ## ~= any0 >>> ## any0 <- function(x) isTRUE(any(x == 0)) ## ~= anyFalse >>> >>> namespace hidden as well, already, which probably could also...