Coder Social home page Coder Social logo

Comments (6)

Fil avatar Fil commented on May 2, 2024

Yes!

from d3-dsv.

Fil avatar Fil commented on May 2, 2024

I'm not totally sure of the consequences here, isn't it that we can now inline objectConverter?

from d3-dsv.

Fil avatar Fil commented on May 2, 2024

I simply added f=autoType to parse and parseRows, and got 77 test failing 😱 β€” I started to go through them, but for so many of them, I'm at a loss whether we want to change them or keep the old test with f=null or f = identity.

Examples:

tape("csvParse(string) does not strip whitespace", function(test) {
  test.deepEqual(dsv.csvParse("a,b,c\n 1, 2 ,3 "), table([{a: " 1", b: " 2 ", c: "3 "}], ["a", "b", "c"]));
  test.end();
});

autoType returns numbers 1, 2, 3.

We could amend the test to "csvParse(string, null) does not strip whitespace"; or test that we get 1, 2, 3. (There is an autoType test saying it should return a number.)

tape("csvParse(string) treats empty fields as the empty string", function(test) {
  test.deepEqual(dsv.csvParse("a,b,c\n1,,3"), table([{a: 1, b: "", c: 3}], ["a", "b", "c"]));
  test.end();
});

autoType returns b:null

etc.

from d3-dsv.

mbostock avatar mbostock commented on May 2, 2024

I’m not inclined to change this behavior for d3 v6, because even though it might be nice, it’s a pretty significant backwards-incompatibility shift.

from d3-dsv.

Fil avatar Fil commented on May 2, 2024

from d3-dsv.

mbostock avatar mbostock commented on May 2, 2024

I’m inclined to keep the status quo for the foreseeable future.

from d3-dsv.

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.