Skip to content

Instantly share code, notes, and snippets.

@liannewriting
Last active January 21, 2020 15:41
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 liannewriting/588987adc7fb8b253a0ebc3975ae9da6 to your computer and use it in GitHub Desktop.
Save liannewriting/588987adc7fb8b253a0ebc3975ae9da6 to your computer and use it in GitHub Desktop.
data_cleaning_202001
cols = df.columns[:30] # first 30 columns
colours = ['#000099', '#ffff00'] # specify the colours - yellow is missing. blue is not missing.
sns.heatmap(df[cols].isnull(), cmap=sns.color_palette(colours))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment