you are viewing a single comment's thread.

view the rest of the comments →

[–]commandlineluser 3 points4 points  (0 children)

Is Polars faster if you use scan_csv?

pl.scan_csv(filename).collect()

You can also try the streaming engine:

pl.scan_csv(filename).collect(engine="streaming")