graph-layout Questions

3

I am trying to make a browser-based tool that lets you inspect dependency graphs as they appear in module systems of programming languages and Makefiles. I am looking for a visualization framework...
Mario asked 20/5, 2013 at 10:24

2

I'm trying to make better a force directed layout algorithm (for a directed graph) The base algorithm works, i.e. the isStable condition in the following code is met and the algorithm ends, but ed...
Recuperative asked 21/11, 2018 at 15:17

2

Solved

I have a number of relatively simple (auto-generated) graphs in graphviz dot format. These show the path through a state machine, but dot has a slightly confusing habit of deciding that two nodes m...
Dictaphone asked 9/7, 2009 at 14:36

7

Solved

I have been working with pygraph on some project. I completed this example, it works fine. Now, the problem is the following: the graph is drawn in a picture format (gif). What I need is to get t...
Uranometry asked 18/12, 2012 at 17:58

4

Solved

I have a graph that has a tree as its backbone. So I have, for example a node A with children B, C, and D. Assuming the graph is being drawn top-down, A will be on one level, then B, C, and D. I wo...
Zn asked 31/5, 2017 at 2:6

3

Solved

I want to use networkx to generate a layout for a graph. Is it possible to transfer this layout to cytoscape and draw it there? I tried to simply write a graph as import networkx as nx G = nx.Grap...
Pompey asked 29/4, 2011 at 4:51

2

Solved

I am using JUNG library for network-graphs. I also found an implementation of the sugiyama layout: http://sourceforge.net/tracker/?func=detail&aid=2944336&group_id=73840&atid=539121 But...
Crosspollinate asked 9/4, 2013 at 9:28

6

Solved

I've got a list of objects that I need to organize as an aesthetic graph. My current approach involves IronPython and a genetic algorithm, but this takes way too long. I've been reading up on Grap...
Selfwill asked 8/8, 2009 at 23:3

6

I need advice for rendering an undirected graph with 178,000 nodes and 500,000 edges. I've tried Neato, Tulip, and Cytoscape. Neato doesn't even come remotely close, and Tulip and Cytoscape c...
Stoke asked 26/10, 2008 at 22:31

3

Solved

I've looked at a number of packages for graph layout (Graphviz, Gephi, Cytoscape, NetworkX to name a few of the more prevalent) and none of them seem to scale to this sort of size. What techniques ...
Secondbest asked 1/11, 2010 at 4:9

3

I'm looking to display a graph (network diagram, not a chart) and show its changes over time. Is there a standard or best way to do this, or any kind of 'network diff' tool? I'm looking for an ove...
Animato asked 22/7, 2010 at 11:53

2

Solved

I play Dwarf Fortress game. And the main challenge for me is to design layout of the fortress efficiently. Meaning, that each industry flow should be as dense as possible, to minimize the travel di...
Lubeck asked 23/1, 2014 at 14:36

6

Solved

I am trying to draw a family tree with Dot and GraphViz. This is what I currently have: # just graph set-up digraph simpsons { ratio = "auto" mincross = 2.0 # draw some nodes "Abraham" [shape=b...
Lath asked 16/2, 2010 at 9:19

1

In this example: http://bl.ocks.org/mbostock/1747543: ...Mike shows us how to avoid collision among nodes so that no two nodes overlap each other. I wonder if it is possible to avoid collision ...
Sabu asked 29/7, 2013 at 9:42

14

By graph here I mean something resembling these images: The ideal solution would: use only managed code allow output to a bitmap image allow output to WPF elements include some kind of inter...
Amygdaloid asked 26/2, 2009 at 10:4

4

Solved

I'm looking for a Javascript library/engine that can do graph layouts. (And when I say layouts, I mean logically position vertices nicely.) The graphs I'm working with are all m-ary trees. M ...
Amphicoelous asked 4/9, 2012 at 21:37

3

Solved

I'm looking for an open source (GPL, LGPL etc) graph layout library for .net framework, preferably fully managed code. Im not worried about the visualisation aspect of things. I can find lot...
Osmium asked 6/4, 2010 at 21:21

1

Solved

How are the LinkDistance and LinkStrength related in a force directed layout in D3.js? I am assuming that they are, correct me if i am wrong. I understand that the linkDistance defines the length...
Ladonnalady asked 27/6, 2013 at 23:54

1

Solved

I want to display a small (n < 50) undirected graph (not a chart) in an Activity. I did a bit of research and it looks like their are a couple of libraries to display charts, but none to display...
Dayflower asked 4/12, 2012 at 16:33

16

Solved

Having seen some suggestions for graphs, I wonder what's the optimum for my problem. I want to render a directed graph to a servlet/picture that is displayed in the browser. There should be some ...
Sculpture asked 18/2, 2009 at 17:15

1

Solved

I want to do the example shown here. It works perfectly well on my machine. The problem is, I can't get the coordinates of the nodes as an array that are stored somewhere in the variable pos. How d...
Ivories asked 2/1, 2013 at 11:42

2

Solved

What are some edge overlap minimization techniques when laying out a graph? (Preferably related to GraphViz) Also are there any existing software that can layout a graph in a planar fashion? Curre...
Tailwind asked 27/2, 2010 at 15:2

1

Solved

I'd like to implement the following mockup with dot: So far I've got this much: digraph G { graph [rankdir = LR, splines=ortho] unit [shape=box, width = 2, height = 10]; more_different_unit...
Tillford asked 27/10, 2011 at 22:0

11

Solved

I wrote a script to export twitter friends as foaf rdf description. Now I'm looking for a tool to visualize the friend networks. I tried http://foafscape.berlios.de/ but for 300+ Nodes it is really...
Mohandas asked 16/9, 2008 at 16:14

4

Solved

For an iOS application I'm making I need to show groups of elements grouped together according to their type, and different groups of types separated from each other in a nicely done layout. ...
Forceps asked 11/9, 2010 at 22:6

© 2022 - 2024 — McMap. All rights reserved.