GithubHelp home page GithubHelp logo

Comments (2)

mbostock avatar mbostock commented on April 20, 2024 5

This is an open-ended question as there are lots of ways to solve this problem. Two options immediately come to mind.

One option is that wherever your code currently has data nodes, change that code so that it has hierarchy nodes. If you always have hierarchy nodes, you can use hierarchy.parent and hierarchy.children to search, and you never need to map from a data node to a hierarchy node. Ideally, you do this when you load your data, so your code only sees hierarchy nodes and never the “raw” data (be it from CSV, JSON, whatever).

Another option would be to add bidirectional links from the data nodes to the containing hierarchy nodes. There’s already hierarchy.data to link from hierarchy to data, but you can iterate over the hierarchy and add a back-link:

root.each(function(node) {
  node.data.node = node;
});

This approach assumes there is a 1-to-1 relationship between the data and the hierarchy, which is probably the case, but isn’t required. (As in, this approach precludes you from using the same data to generate multiple hierarchical visualizations that share the same data object.)

A third approach would be to create a Map that explicitly maps from data to hierarchy. That way if you want multiple _hierarchy_s you can have multiple _map_s.

If you want more assistance, please use Stack Overflow tag d3.js to ask for help. Although I make an effort to assist everyone that asks, I am not always available to provide help promptly or directly. Stack Overflow provides a better collaborative forum for self-help: tens of thousands of D3-related questions have already been asked there, and some answered questions may be relevant to you.

When asking for help, please include a link to a live example that demonstrates the issue, preferably on bl.ocks.org. It is often impossible to debug from code snippets alone. Isolate the issue and reduce your code as much as possible before asking for help. The less code you post, the easier it is for someone to debug, and the more likely you are to get a helpful response.

If you have a question about D3’s behavior and want to discuss it with other users, also consider the d3-js Google Group or joining the d3-js Slack.

Thank you! 🤗

from d3-hierarchy.

karlitos avatar karlitos commented on April 20, 2024

I would like to avoid creating a new issue for this, so I post my question here.

I wonder if there is a possibility to create the back-links/mapping on-the-fly when calling d3.hierarchy , d3.stratify() so I don't need to traverse the tree 2.nd time

root.each(function(node) {
...
});

Background: I would like to create a id -> hierarchy node look-up table os I can access nodes instantly.

from d3-hierarchy.

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.