Last active
April 26, 2019 04:09
-
-
Save this-is-richard/00b3be688199838411f437f45822d5ba 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 null_counts(df): | |
| null_counts = df.isnull().sum(axis = 0) / len(df) | |
| null_counts.plot.bar(figsize=(15, 4)) | |
| print(null_counts.sort_values(ascending=False).head(10)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment