Giter VIP home page Giter VIP logo

Comments (4)

BurntSushi avatar BurntSushi commented on May 25, 2024 1

Yeah, exactly, not "sad" at all given that tsv-utils didn't exist back then.

Moreover, I wanted to work with csv, not tsv. tsv-utils does come with its own csv2tsv utility, so I'd have to run that first:

[andrew@duff openpolicing]$ time xsv count MA-clean.csv
3418298

real    0.449
user    0.411
sys     0.037
maxmem  5 MB
faults  0
[andrew@duff openpolicing]$ time csv2tsv MA-clean.csv | wc -l
3418299

real    0.548
user    0.421
sys     0.114
maxmem  5 MB
faults  0

real    0.548
user    0.008
sys     0.064
maxmem  5 MB
faults  0

So yeah, it looks decently fast.

While I don't know how tsv-utils works, it's worth noting that tsv data is commonly assumed to not have quoted data and that it simply does not contain delimiters at all:

By itself, using different field delimiters is not especially significant. Far more important is the approach to delimiters occurring in the data. CSV uses an escape syntax to represent commas and newlines in the data. TSV takes a different approach, disallowing TABs and newlines in the data.

And thus:

By contrast, parsing TSV data is simple.

And indeed, this is a categorical difference and opens up many more optimization techniques that simply aren't available for csv data.

So, you might say, "well just convert all your CSV files to TSV." Nope. Non-starter. CSVs can encode any kind of arbitrary data. But as mentioned above, TSVs as implemented by tsv-utils cannot. They cannot handle cases where tabs and newlines occur inside a field. Even its csv2tsv tool admits to this, and will replace those characters with spaces by default, thereby making the conversion lossy.

So tsv-utils is great if you have TSV data. I did not. I had CSV and that CSV was not clean and nice. tsv-utils, even if it existed back then, wouldn't have worked for me.

from xsv.

tastyminerals avatar tastyminerals commented on May 25, 2024

My bad, xsv started 2 years before that one.

from xsv.

tastyminerals avatar tastyminerals commented on May 25, 2024

I see. It makes sense now. Many things tend to look simple only at first glance.

from xsv.

BurntSushi avatar BurntSushi commented on May 25, 2024

Indeed. I've learned that same lesson many times.

from xsv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.