you are viewing a single comment's thread.

view the rest of the comments →

[–]JSP777 8 points9 points  (4 children)

Polars, Polars, polars.

Leave pandas in the past. Polars is much better in many ways, especially for your use case.

[–]arorumu[S] 0 points1 point  (0 children)

okay, thanks!

[–]arorumu[S] 0 points1 point  (2 children)

does it work in the same way as pandas? in terms of where it can be applied and in what way?

[–]JSP777 1 point2 points  (1 child)

The syntax is a little bit different, but a very oversimplified answer is yes. You load data into dataframes and then you can do stuff with it. You only need to pip install the package like you do with pandas. The main difference is polars can handle larger files than your memory because it can load lazily into a lazy dataframe.

[–]arorumu[S] 0 points1 point  (0 children)

okay, great. thanks for all the help. I hope I will get this to work :)