[Rd] hasNA() / anyNA()?

Kurt Hornik Kurt.Hornik at wu-wien.ac.at
Mon Aug 13 21:27:09 CEST 2007


>>>>> Michael Cassin writes:

> I don't know of one.

> Ideally, instead of a specifc function anyNA() function, any() could
> be perhaps be extended to any(x, FUN) where FUN returns a logical for
> an element of x, and implemented to find the 1st instance as you
> suggest.

Patterned after Common Lisp's position(), ideally we would have formals
(x, FUN, right = FALSE) where the last argument controls whether the
search proceeds from left to right or right to left.

This would certainly be very nice to have, and make it trivial to
provide an efficient variant of Common Lisp's find() (which finds the
first element from the left or right for which the predicate gives
true).

-k

> Mike

> On 8/13/07, Henrik Bengtsson <hb at stat.berkeley.edu> wrote:
>> 
>> Hi,
>> 
>> is there a hasNA() / an anyNA() function in R?  Of course,
>> 
>> hasNA <- function(x) {
>> any(is.na(x));
>> }
>> 
>> would do, but that would scan all elements in 'x' and then do the
>> test.  I'm looking for a more efficient implementation that returns
>> TRUE at the first NA, e.g.
>> 
>> hasNA <- function(x) {
>> for (kk in seq(along=x)) {
>> if (is.na(x[kk]))
>> return(TRUE);
>> }
>> FALSE;
>> }
>> 
>> Cheers
>> 
>> Henrik
>> 
>> ______________________________________________
>> R-devel at r-project.org mailing list
>> https://stat.ethz.ch/mailman/listinfo/r-devel
>> 

> 	[[alternative HTML version deleted]]

> ______________________________________________
> R-devel at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-devel



More information about the R-devel mailing list