Skip to content

Instantly share code, notes, and snippets.

@admond1994
Created January 11, 2019 13:31
Show Gist options
  • Select an option

  • Save admond1994/e72d41d6094ccd8c01c2f30262f54a9e to your computer and use it in GitHub Desktop.

Select an option

Save admond1994/e72d41d6094ccd8c01c2f30262f54a9e 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