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 3532706 commit d0563f9Copy full SHA for d0563f9
polars_v_pandas/streaming_test.py
@@ -28,7 +28,11 @@ def analyze_polars_streaming(polars_lf):
28
29
print()
30
print(f"Polars lazyframe analysis time for {int(sys.argv[1])} rows:")
31
-print(Timer(functools.partial(analyze_polars_lazyframe, polars_lf)).timeit(100))
+print(
32
+ Timer(functools.partial(analyze_polars_lazyframe, polars_lf)).timeit(100)
33
+)
34
35
print(f"Polars streaming analysis time for {int(sys.argv[1])} rows:")
-print(Timer(functools.partial(analyze_polars_streaming, polars_lf)).timeit(100))
36
37
+ Timer(functools.partial(analyze_polars_streaming, polars_lf)).timeit(100)
38
0 commit comments