Answers for "pandas get index of na"

0

get indexes where value is na pandas

rows_with_nan = [index for index, row in df.iterrows() if row.isnull().any()]
Posted by: Guest on June-21-2020

Python Answers by Framework

Browse Popular Code Answers by Language