Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the index of the min value of a numpy array that contains NaNs and I want them ignored

>>> a = array([ nan,   2.5,   3.,  nan,   4.,   5.])  
>>> a  
array([ NaN,  2.5,  3. ,  NaN,  4. ,  5. ])  

if I run argmin, it returns the index of the first NaN

>>> a.argmin()  
0  

I substitute NaNs with Infs and then run argmin

>>> a[isnan(a)] = Inf  
>>> a  
array([ Inf,  2.5,  3. ,  Inf,  4. ,  5. ])  
>>> a.argmin()  
1  

My dilemma is the following: I'd rather not change NaNs to Infs and then back after I'm done with argmin (since NaNs have a meaning later on in the code). Is there a better way to do this?

There is also a question of what should the result be if all of the original values of a are NaN? In my implementation the answer is 0

share|improve this question

2 Answers

up vote 12 down vote accepted

Sure! Use nanargmin:

import numpy as np
a = np.array([ np.nan,   2.5,   3.,  np.nan,   4.,   5.])
print(np.nanargmin(a))
# 1

There is also nansum, nanmax, nanargmax, and nanmin,

In scipy.stats, there is nanmean and nanmedian.

For more ways to ignore nans, check out masked arrays.

share|improve this answer
Thank you ~unutbu! – Dragan Chupacabric May 12 '10 at 17:16
You have no idea how happy this makes me. – weronika Jun 24 '11 at 2:21

If speed is an issue, and it rarely is, you might want to take a look at nanargmin in bottleneck.

Create an array with about 10% NaNs:

import numpy as np
import bottleneck as bn

a = np.random.rand(1000000)
a[a > 0.9] = np.nan

Then use IPython's timeit to compare speed:

In [2]: timeit np.nanargmin(a)
100 loops, best of 3: 9.29 ms per loop
In [3]: timeit bn.nanargmin(a)
1000 loops, best of 3: 1.15 ms per loop
share|improve this answer

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.