We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10d295a commit ad0f4cfCopy full SHA for ad0f4cf
python-serialize/tabular-data/parquet-demo/main.py
@@ -14,7 +14,7 @@ def main():
14
print(f"{df1.equals(df2) = }") # noqa
15
print(f"{df2.equals(df3) = }") # noqa
16
17
- df = prun_and_filter("users.parquet")
+ df = prune_and_filter("users.parquet")
18
print(df.head())
19
20
@@ -34,7 +34,7 @@ def deserialize_with_fastparquet(filename):
34
return fastparquet.ParquetFile(filename).to_pandas()
35
36
37
-def prun_and_filter(filename):
+def prune_and_filter(filename):
38
return pd.read_parquet(
39
filename,
40
filters=[("language", "=", "fr")],
0 commit comments