Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for the fastest way to check for the occurrence of NaN (np.nan) in a NumPy array X. np.isnan(X) is out of the question, since it builds a boolean array of shape X.shape, which is potentially gigantic.

I tried np.nan in X, but that seems not to work because np.nan != np.nan. Is there a fast and memory-efficient way to do this at all?

(To those who would ask "how gigantic": I can't tell. This is input validation for library code.)

share|improve this question
does validating the user input not work in this scenario? As in check for NaN before the insert – Woot4Moo Jul 18 '11 at 17:14
@Woot4Moo: no, the library takes NumPy arrays or scipy.sparse matrices as input. – larsmans Jul 18 '11 at 20:28
1  
If you're doing this a lot, I've heard good things about Bottleneck (pypi.python.org/pypi/Bottleneck) – matt Jul 19 '11 at 17:21

4 Answers

up vote 25 down vote accepted

Ray's solution is good. However, on my machine it is about 2.5x faster to use numpy.sum in place of numpy.min:

In [13]: %timeit np.isnan(np.min(x))
1000 loops, best of 3: 244 us per loop

In [14]: %timeit np.isnan(np.sum(x))
10000 loops, best of 3: 97.3 us per loop

Unlike min, sum doesn't require branching, which on modern hardware tends to be pretty expensive. This is probably the reason why sum is faster.

edit The above test was performed with a single NaN right in the middle of the array.

It is interesting to note that min is slower in the presence of NaNs than in their absence. It also seems to get slower as NaNs get closer to the start of the array. On the other hand, sum's throughput seems constant regardless of whether there are NaNs and where they're located:

In [40]: x = np.random.rand(100000)

In [41]: %timeit np.isnan(np.min(x))
10000 loops, best of 3: 153 us per loop

In [42]: %timeit np.isnan(np.sum(x))
10000 loops, best of 3: 95.9 us per loop

In [43]: x[50000] = np.nan

In [44]: %timeit np.isnan(np.min(x))
1000 loops, best of 3: 239 us per loop

In [45]: %timeit np.isnan(np.sum(x))
10000 loops, best of 3: 95.8 us per loop

In [46]: x[0] = np.nan

In [47]: %timeit np.isnan(np.min(x))
1000 loops, best of 3: 326 us per loop

In [48]: %timeit np.isnan(np.sum(x))
10000 loops, best of 3: 95.9 us per loop
share|improve this answer
+1 for benchmarking – CharlesB Jul 18 '11 at 18:13
np.min is faster when the array contains no NaNs, which is my expected input. But I've decided to accept this one anyway, because it catches inf and neginf as well. – larsmans Jul 18 '11 at 20:27

I think np.isnan(np.min(X)) should do what you want.

share|improve this answer

Using anynan from Bottleneck is many times faster.

Create an array that contains NaNs:

In [1]: x = np.random.rand(100000)
In [2]: x[x > 0.98] = np.nan

Try some Numpy tricks:

In [3]: timeit np.isnan(np.min(x))
1000 loops, best of 3: 298 us per loop
In [4]: timeit np.isnan(np.sum(x))
10000 loops, best of 3: 71.8 us per loop

Now try Bottleneck:

In [5]: timeit bn.anynan(x)
1000000 loops, best of 3: 556 ns per loop

The closer the first NaN is to the beginning of the array, the faster bn.anynan() runs. But even if there are no NaNs, bn.anynan is fast:

In [6]: x = np.random.rand(100000)
In [7]: timeit bn.anynan(x)
10000 loops, best of 3: 48.4 us per loop
share|improve this answer
I've looked at bottleneck, but it would add a dependency; this is for scikit-learn code. Any chance that bottleneck will get merged into NumPy? – larsmans Jun 9 '12 at 12:12
1  
You could try to import anynan from bottleneck. If that fails (i.e. the user doesn't have bottleneck) then you could use a slow anynan(). – kwgoodman Jun 9 '12 at 23:37

Even there exist an accepted answer, I'll like to demonstrate the following (with Python 2.7.2 and Numpy 1.6.0 on Vista):

In []: x= rand(1e5)
In []: %timeit isnan(x.min())
10000 loops, best of 3: 200 us per loop
In []: %timeit isnan(x.sum())
10000 loops, best of 3: 169 us per loop
In []: %timeit isnan(dot(x, x))
10000 loops, best of 3: 134 us per loop

In []: x[5e4]= NaN
In []: %timeit isnan(x.min())
100 loops, best of 3: 4.47 ms per loop
In []: %timeit isnan(x.sum())
100 loops, best of 3: 6.44 ms per loop
In []: %timeit isnan(dot(x, x))
10000 loops, best of 3: 138 us per loop

Thus, the really efficient way might be heavily dependent on the operating system. Anyway dot(.) based seems to be the most stable one.

share|improve this answer
I suspect it depends not so much on the OS, as on the underlying BLAS implementation and C compiler. Thanks, but a dot product is just a tad more likely to overflow when x contains large values, and I also want to check for inf. – larsmans Jul 19 '11 at 6:08
Well, you can always do the dot product with ones and use isfinite(.). I just wanted to point out the huge performance gap. Thanks – eat Jul 19 '11 at 7:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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