How to use numpy.logical_not() and numpy.nan() functions In Python

The numpy.isnan() will give true indexes for all the indexes where the value is nan and when combined with numpy.logical_not() function the boolean values will be reversed. So, in the end, we get indexes for all the elements which are not nan. From the indexes, we can filter out the values that are not nan and save them in another array.

Python3




import numpy
 
# create a 1D array
a = numpy.array([5, 2, 8, 9, 3, numpy.nan,
                 2, 6, 1, numpy.nan])
 
# remove nan values using numpy.isnan()
# and numpy.logical_not
b = a[numpy.logical_not(numpy.isnan(a))]
 
# print the results
print("original 1D array                    ->", a)
print("1D array after removing nan values   ->", b)
print()
 
# create a 2D array
c = numpy.array([[6, 2, numpy.nan], [2, 6, 1],
                 [numpy.nan, 1, numpy.nan]])
 
# remove nan values using numpy.isnan()
# and numpy.logical_not
d = c[numpy.logical_not(numpy.isnan(c))]
 
# print the results
print("Original 2D array   ->")
print(c)
print("2D array converted to 1D after removing nan values   ", d)


Output:

 

Note: No matter what the Dimension of the array is, it will be flattened into a 1D array

How to remove NaN values from a given NumPy array?

In this article, we are going to learn how to remove Nan values from a given array. Nan values are those values that do not have a specific value associated with them or they are different from the type of values that are to be used in the declared array.

There are basically three approaches with slight differences in syntax. Either we could use a function specified in NumPy or we could use an operator, the basic working will be the same.

Similar Reads

Using numpy.logical_not() and numpy.nan() functions

The numpy.isnan() will give true indexes for all the indexes where the value is nan and when combined with numpy.logical_not() function the boolean values will be reversed. So, in the end, we get indexes for all the elements which are not nan. From the indexes, we can filter out the values that are not nan and save them in another array....

Using np.isnan() Remove NaN values from a given NumPy

...