Skip to content

Instantly share code, notes, and snippets.

@ogyalcin
Created August 2, 2018 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ogyalcin/0b7fd9b5ac2f52334216ec3e06c41d73 to your computer and use it in GitHub Desktop.
Save ogyalcin/0b7fd9b5ac2f52334216ec3e06c41d73 to your computer and use it in GitHub Desktop.
Create a Heatmap to Detect Null Values
#For iPython
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline
plt.figure(figsize=(10,25))
sns.heatmap(combined.isnull(),cmap="viridis",yticklabels=False,cbar=False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment