Reputation: 97
I have NaN values in my Data Frame....
when I run command "Data[Data['column_name'].isnull().any(axis=1)]
"
can't find any NaN value. Please help me out
Upvotes: 0
Views: 918
Reputation: 124
It returns all the Nan or None values for that column along axis=1.
Data[Data['ColumnName'].isnull()]
Upvotes: 2