Answers for "numpy where is nan"

1

numpy find rows containing nan

# in each case returns array of bool
np.isnan(a).any(axis=1) # rows where any value is nan
np.isnan(a).all(axis=1) # rows where all values are nan
Posted by: Guest on June-07-2021
0

numpy is not nan

a = a[~np.isnan(a)]
Posted by: Guest on September-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language