Created
October 27, 2019 21:50
-
-
Save GeorgeSeif/6e737898b7c957eb265994f5d7885ad1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 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