Last active
May 25, 2022 04:07
-
-
Save kvnkho/8ba64ae31b7a2067887a0ddd6ee27c37 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
| # case 1: read file and min of all columns | |
| backend.read_parquet(path).min() | |
| # case 2: read file and min of two columns | |
| backend.read_parquet(path)[["c0","c1"]].min() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment