• @MoonHawk
    link
    English
    26
    edit-2
    1 month 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

    • @[email protected]
      link
      fedilink
      English
      141 month 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.

    • elmicha
      link
      fedilink
      English
      81 month 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.

    • @merari42
      link
      English
      41 month 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.)

      • @[email protected]
        link
        fedilink
        English
        11 month ago

        I used to export my pandas DataFrames as pickles, but decided to test parquet and it was great. It was like 10x smaller and allowed me to had the the databases on a server directory instead of having to copy everything to the local machine.

    • candyman337
      link
      fedilink
      English
      11 month ago

      If you have a csv bigger than like 500mb you need more than 8gb of ram to open it