Displaying 4 results from an estimated 4 matches for "allfalse".
2015 Mar 03
2
[R] Why does R replace all row values with NAs
...on(x) !is.na(x) & x # also == "isTRUE componentwise"
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
bro...
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
>>
>> namesp...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...100
11.90916 100
>
> 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, whic...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...[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
>>...