Skip to content

Instantly share code, notes, and snippets.

@GeorgeSeif
Created October 27, 2019 21:50
Show Gist options
  • Save GeorgeSeif/6e737898b7c957eb265994f5d7885ad1 to your computer and use it in GitHub Desktop.
Save GeorgeSeif/6e737898b7c957eb265994f5d7885ad1 to your computer and use it in GitHub Desktop.
### Filtering by price in Pandas
pandas_df[pandas_df["price"] > 250]
### Filtering by price in Dask
dask_df[dask_df["price"] > 250]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment