Coder Social home page Coder Social logo

Comments (4)

mbostock avatar mbostock commented on May 1, 2024

You can make your own using d3.dsvFormat(" ").

https://observablehq.com/d/5234335063a77f4a

from d3-dsv.

KennethKinLum avatar KennethKinLum commented on May 1, 2024

You can make your own using d3.dsvFormat(" ").

https://observablehq.com/d/5234335063a77f4a

thank you. Can it do the fetch as well? Would it be:

d3.text("data.txt")
  .then(txt => ssv.parse(txt))
  .then(data => {

  });

?

Seems like it can't. Seems like it needs to be:

    ssv = d3.dsvFormat("\t ");
    d3.text("multiple.tsv")
        .then(txt => {
            data = ssv.parse(txt)
            console.log(data);

but it seems d3.dsvFormat("\t "); needs to be d3.dsvFormat(" "); -- if there is

    3   \t 4

(some space and a tab) it is not possible to work this way? But if it is:

    ssv = d3.dsvFormat(" ");
    d3.text("multiple.tsv")
        .then(txt => {
            txt = txt.replace(/[\t ]+/g, " ");
            data = ssv.parse(txt);
            console.log(data);

then it can work.

from d3-dsv.

mbostock avatar mbostock commented on May 1, 2024

d3.dsvFormat only allows characters as delimiters; it doesn’t support multiple characters or regular expressions as delimiters. You can use space as a delimiter, or tab, but not both.

To fetch and parse a file:

d3.text(url).then(text => ssv.parse(text))

Added examples here:

https://observablehq.com/d/5234335063a77f4a

from d3-dsv.

KennethKinLum avatar KennethKinLum commented on May 1, 2024

d3.dsvFormat only allows characters as delimiters; it doesn’t support multiple characters or regular expressions as delimiters. You can use space as a delimiter, or tab, but not both.

To fetch and parse a file:

d3.text(url).then(text => ssv.parse(text))

Added examples here:

https://observablehq.com/d/5234335063a77f4a

I appreciate it.

I was trying to replicate the case with spaces in front of the first value and this seems to work ok:

    ssv = d3.dsvFormat(" ")
    d3.text("multiple.ssv")
        .then(txt => {
            txt = txt.replace(/[\t ]+/g, " ").replace(/^[ ]/gm, "").replace(/[ ]$/gm, "");
            data = ssv.parse(txt);
            console.log(data);

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.