vote up 5 vote down star

I need to write a function which will detect if the input contains at least one value which is non-numeric. If a non-numeric value is found I will raise an error (because the calculation should only return a numeric value). The number of dimensions of the input array is not known in advance - the function should give the correct value regardless of ndim. As an extra complication the input could be a single float or numpy.float64 or even something oddball like a zero-dimensional array.

The obvious way to solve this is to write a recursive function which iterates over every iterable object in the array until it finds a non-iterabe. It will apply the numpy.isnan() function over every non-iterable object. If at least one non-numeric value is found then the function will return False immediately. Otherwise if all the values in the iterable are numeric it will eventually return True.

That works just fine, but it's pretty slow and I expect that Numpy has a much better way to do it. Can anybody propose me an alternative that is faster and more numpyish?

Here's my mockup:

def contains_nan( myarray ):
    """
    @param myarray : An n-dimensional array or a single float
    @type myarray : numpy.ndarray, numpy.array, float
    @returns: bool
    Returns true if myarray is numeric or only contains numeric values.
    Returns false if at least one non-numeric value exists
    Not-A-Number is given by the numpy.isnan() function.
    """
    return True

Thanks

flag

67% accept rate
2  
Your description for contains_nan looks suspicious: "Returns false if at least one non-numeric value exists". I would have expected contains_nan to return True if the array contains NaN. – Samuel Tardieu May 26 at 18:00

3 Answers

vote up 4 vote down check

This should be faster than iterating and will work regardless of shape

numpy.isnan(myarray).any()

edit: 30x faster:

import timeit
s = 'import numpy;a = numpy.arange(10000.).reshape((100,100));a[10,10]=numpy.nan'
ms = [
    'numpy.isnan(a).any()',
    'any(numpy.isnan(x) for x in a.flatten())']
for m in ms:
    print "  %.2fs" % timeit.Timer(m, s).timeit(1000), m

results:

  0.11s numpy.isnan(a).any()
  3.75s any(numpy.isnan(x) for x in a.flatten())

bonus: works fine for non-array numpy types:

>>> a = numpy.float64(42.)
>>> numpy.isnan(a).any()
False
>>> a = numpy.float64(numpy.nan)
>>> numpy.isnan(a).any()
True
link|flag
vote up 1 vote down

With numpy 1.3 or svn you can do this

In [1]: a = arange(10000.).reshape(100,100)

In [3]: isnan(a.max())
Out[3]: False

In [4]: a[50,50] = nan

In [5]: isnan(a.max())
Out[5]: True

In [6]: timeit isnan(a.max())
10000 loops, best of 3: 66.3 µs per loop

The treatment of nans in comparisons was not consistent in earlier versions.

link|flag
vote up 2 vote down

You can use

    return any(numpy.isnan(x) for x in myarray.flatten())

to do the job regardless of the shape of myarray. And it stops as soon as it finds a NaN.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.