▲ | jcattle 4 days ago | ||||||||||||||||
If you don't care that much about the accuracy of your data (like only caring about a few decimals of accuracy in your floats), you don't generate huge amounts of data, you do not need to work with it across different tools and pass it back and forth, then yes CSV CAN be nice. I wouldn't write it a love letter though. There's a reason that parquet exists. | |||||||||||||||||
▲ | christophilus 4 days ago | parent [-] | ||||||||||||||||
CSV is just a string serialization, so you can represent floats with any accuracy you choose. It’s streamable and compressible, so large files are fine, though maybe not “huge” depending on how you define “huge”. It works fine passing back and forth between various tools, so… Without more specifics, I disagree with your take. | |||||||||||||||||
|