Answers for "np where col value is nan"

1

np where nan

np.argwhere(np.isnan(x))
Posted by: Guest on April-20-2020
0

numpy find columns containing nan

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

Python Answers by Framework

Browse Popular Code Answers by Language