Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Created March 18, 2020 08:57
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 aniruddha27/34832e66c9fd12c51c4166a9d60d6e35 to your computer and use it in GitHub Desktop.
Save aniruddha27/34832e66c9fd12c51c4166a9d60d6e35 to your computer and use it in GitHub Desktop.
f_filter = df_sample['Gender']=='f'
print(df_sample[f_filter])
m_filter = df_sample['Gender']=='m'
print(df_sample[m_filter])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment