BhuriStray
BhuriStray

Reputation: 97

Unable to find NaN value in DataFrame

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

Answers (1)

sridhar er
sridhar er

Reputation: 124

It returns all the Nan or None values for that column along axis=1.

Data[Data['ColumnName'].isnull()]

Upvotes: 2

Related Questions