Program to find the missing data in an array using NumPy.

In this python numpy program, we will find the missing data in an array using NumPy.

Steps to solve the program
  1. Import the numpy library as np.
  2. Create an array using np.array().
  3. Find the missing data in a given array using np.isnan().
  4. It will return True if the value in an array is missing (i.e. nan- not a number) else False.
  5. Print the output.
				
					import numpy as np
x = np.array([[1, 5, np.nan],
              [8, np.nan, 9]])

print(np.isnan(x))
				
			

Output :

				
					[[False False  True]
 [False  True False]]
				
			

convert an array into a list.

check whether two arrays are element-wise equal.

Leave a Comment