Skip to content

Instantly share code, notes, and snippets.

@timmapuramreddy
Forked from admond1994/check_missing_data.py
Created January 23, 2019 17:06
Show Gist options
  • Select an option

  • Save timmapuramreddy/78a3724114af0977365e8bf8f6f46e7d to your computer and use it in GitHub Desktop.

Select an option

Save timmapuramreddy/78a3724114af0977365e8bf8f6f46e7d to your computer and use it in GitHub Desktop.
def check_missing_data(df):
# check for any missing data in the df (display in descending order)
return df.isnull().sum().sort_values(ascending=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment