• QuizzaciousOtter@lemm.ee
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago

    Is 600 MB a lot for pandas? Of course, CSV isn’t really optimal but I would’ve sworn pandas happily works with gigabytes of data.

    • tequinhu@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      It really depends on the machine that is running the code. Pandas will always have the entire thing loaded in memory, and while 600Mb is not a concern for our modern laptops running a single analysis at a time, it can get really messy if the person is not thinking about hardware limitations

      • naught@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        Pandas supports lazy loading and can read files in chunks. Hell, even regular ole Python doesn’t need to read the whole file at once with csv

        • tequinhu@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          2 months ago

          I didn’t know about lazy loading, that’s cool!

          Then I guess that the meme doesn’t apply anymore. Though I will state that (from my anedoctal experience) people that can use Panda’s most advanced features* are also comfortable with other data processing frameworks (usually more suitable to large datasets**)

          *Anything beyond the standard groupby - apply can be considered advanced, from the placrs I’ve been

          **I feel the urge to note that 60Mb isn’ lt a large dataset by any means, but I believe that’s beyond the point

    • gigachad@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      I guess it’s more of a critique of how bad CSV is for storing large data than pandas being inefficient

    • marcos@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      Is 600 MB a lot for pandas?

      No, but it’s easy to make a program in Python that doesn’t like it.

    • MoonHawk@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      2 months ago

      What do you mean not optimal? This is quite literally the most popular format for any serious data handling and exchange. One byte per separator and newline is all you need. It is not compressed so allows you to stream as well. If you don’t need tree structure it is massively better than others

      • merari42@lemmy.world
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        Have you heard that there are great serialised file formats like .parquet from appache arrow, that can easily be used in typical data science packages like duckdb or polars. Perhaps it even works with pandas (although do not know it that well. I avoid pandas as much as possible as someone who comes from the R tidyverse and try to use polars more when I work in python, because it often feels more intuitive to work with for me.)

      • elmicha@feddit.org
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        But which separator is it, and which line ending? ASCII, UTF-8, UTF-16 or something else? What about quoting separators and line endings? Yes, there is an RFC, but a million programs were made before the RFC and won’t change their ways now.

        Also you can gzip CSV and still stream them.

      • QuizzaciousOtter@lemm.ee
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        I think portability and easy parsing is the only advantage od CSV. It’s definitely good enough (maybe even the best) for small datasets but if you have a lot of data you need a compressed binary format, something like parquet.

    • mvirts@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      It’s more likely you’ll eat up storage when you read a 600mb parquet and try to write it as CSV.