Answers for "numpy find columns containing nan"

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

Code answers related to "numpy find columns containing nan"

Python Answers by Framework

Browse Popular Code Answers by Language