Created
January 11, 2019 13:31
-
-
Save admond1994/e72d41d6094ccd8c01c2f30262f54a9e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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