0

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

2
  • Data['column_name'].isna().any() Commented Feb 15, 2019 at 10:24
  • 5
    Sure, all I need is your ip, username, and password. I can ssh into your computer and take a look. Otherwise, you could make things simpler by providing a minimal reproducible example. Commented Feb 15, 2019 at 10:24

1 Answer 1

2

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

Data[Data['ColumnName'].isnull()] 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.