Created
August 16, 2020 06:55
-
-
Save ashutoshkarna03/3a90c9fa16371996dce574b08016101e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
is_NaN = df.isnull() | |
row_has_NaN = is_NaN.any(axis=1) | |
rows_with_NaN = df[row_has_NaN] | |
print(rows_with_NaN) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment