Giter Site home page Giter Site logo

Comments (4)

mbostock avatar mbostock commented on April 28, 2024

Related Stack Overflow question.

from d3-force.

mbostock avatar mbostock commented on April 28, 2024

I’m currently doing this by hand:

d3.queue()
    .defer(d3.tsv, "nodes.tsv")
    .defer(d3.tsv, "links.tsv")
    .await(ready);

function ready(error, nodes, links) {
  if (error) throw error;

  var nodeByName = d3.map(nodes, function(d) { return d.name; });

  links.forEach(function(d) {
    d.source = nodeByName.get(d.source);
    d.target = nodeByName.get(d.target);
  });

  // Initialize the force-layout here.
}

from d3-force.

mbostock avatar mbostock commented on April 28, 2024

Slightly different approach:

var nodeById = d3.map();

d3.queue()
    .defer(d3.tsv, "nodes.tsv", typeNode)
    .defer(d3.tsv, "links.tsv", typeLink)
    .await(ready);

function ready(error, nodes, links) {
  if (error) throw error;

  // Initialize the force-layout here.
}

function typeNode(d) {
  nodeById.set(d.name, d);
  return d;
}

function typeLink(d) {
  d.source = nodeById.get(d.source);
  d.target = nodeById.get(d.target);
  return d;
}

Maybe better would be to support a more natural file format for graphs, such as GML (see also this and this; there’s even a lesmis.gml already available) or GEXF. The latter might be good for use with d3-hierarchy, too (although JSON seems sufficient…).

from d3-force.

mbostock avatar mbostock commented on April 28, 2024

Actually, I don’t see a great reason to support GML given that it’s an arbitrary object serialization format that is similar but less popular and probably less expressive to JSON; yes, it enables the use of existing GML files and interoperability with other applications, but it’s not exactly hard to convert GML to JSON. GML would be nice to support as a parser plugin, but not preferable to the existing JSON format we’ve been using (see miserables.json). That’s especially true because GML’s graph conventions are limited to identifying nodes (and link sources and targets) by numeric identifier.

I’ve added numeric linking in 541ef54, equivalent to what D3 3.x does. It’d still be nice to support linking by string identifier in d3.forceLink, though, I suppose.

from d3-force.

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.