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

how can I replace the NaN value in an array, zero if an operation is performed such that as a result instead of the NaN value is zero operations as

0 / 0 = NaN can be replaced by 0

share|improve this question

1 Answer

up vote 3 down vote accepted

If you have Python 2.6 you have the math.isnan() function to find NaN values.

With this we can use a list comprehension to replace the NaN values in a list as follows:

import math
mylist = [0 if math.isnan(x) else x for x in mylist]

If you have Python 2.5 we can use the NaN != NaN trick from this question so you do this:

mylist = [0 if x != x else x for x in mylist]
share|improve this answer
hello thank you for answering excellent response – ricardo Nov 26 '09 at 13:14
so will the package numpy >>> from numpy import * – ricardo Nov 26 '09 at 13:58

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.