Skip to content

Instantly share code, notes, and snippets.

@suntong
Last active August 29, 2015 14:20
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 suntong/9cb494214aea24c2c5ff to your computer and use it in GitHub Desktop.
Save suntong/9cb494214aea24c2c5ff to your computer and use it in GitHub Desktop.

Challenge: select all the people that are:

  • in the 3rd class
  • under age 10
  • female

A:

train[(train['Age'] < 10) & (train['pclass'] == 3) & (train['sex'] == "female")]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment