Displaying 4 results from an estimated 4 matches for "r_any0".
Did you mean:
_any_
2015 Mar 03
2
[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
namespace hidden as well, already, which probably could also be
brought to base R.
One big reason to *not* go there (to internal C code) at all with R is that
S3 a...
2015 Mar 03
2
[R] Why does R replace all row values with NAs
...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.
>>
>> On...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...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 intern...
2015 Mar 03
0
[R] Why does R replace all row values with NAs
...t;>> 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...