graph-drawing Questions
2
Solved
I'm trying to understand these two methods of the Bitmap or Image. One being .SetPropertyItem() and the other being .GetPropertyItem().
I'm completely confused as to the way the documentation says...
Mabellemable asked 16/9, 2013 at 4:41
3
Solved
I'm trying to figure out how to draw an edge between a node in tikz and the label of an edge between two other nodes. Here's an example of what I'm trying to do:
Here's my code:
\documentclass[11p...
Linhliniment asked 12/12, 2015 at 5:53
3
Solved
Drawing a clique graph with
import networkx as nx
....
nx.draw(G, layout=nx.spring_layout(G))
produces the following picture:
Obviously, the spacing between the nodes (e.g., the edge length)...
Padrone asked 11/1, 2013 at 17:19
6
Solved
I'm looking for either algorithms or visualization tool for (nice) circuit/block-diagram drawing.
I am also interested in a general formulation of the problem.
By "circuit drawing", I mean the c...
Baalbeer asked 21/6, 2011 at 8:46
1
Solved
I drew the following grid:
The above grid is drawn using the following two methods, one to calculate the grid and the other to calculate the centers for each cell:
//makes grid in picture box
p...
Thoracotomy asked 18/7, 2017 at 6:30
1
Solved
With the following dot code
digraph DG {
G -> V;
G -> E;
G -> P;
G -> C;
}
I generate the following graph
How could I move the node G in the centre? That is I wish to get somethin...
Vendetta asked 7/2, 2015 at 15:59
2
Solved
Description
I am currently working with Google Maps V3 for our client and they've asked us to implement a drawing tool that will allow them to create connected stream of lines and calculate the di...
Gab asked 27/5, 2014 at 15:12
1
Solved
I am looking forward to write a script that will automatically take input from a file and declare the nodes and edges, and produce a graph that can be visualized in any visualization software.
I t...
Shotgun asked 26/8, 2013 at 12:42
1
I already have a way of clustering my graph, so the process of clustering isn't the issue here. What I want to do is, once we have all the nodes clustered - to draw the clustered graph in Python, s...
Debenture asked 22/5, 2013 at 14:37
2
Solved
I'm trying to display edges going from right to left (i.e. backwards) using dot:
C <- A -> B
The best I could do was:
digraph {
a -> b;
c -> a [dir="back"];
{rank=same;c a b}
}
...
Horrid asked 2/10, 2009 at 17:10
1
Which of these (https://stackoverflow.com/questions/492893/graph-drawing-c-library) libraries can be used to evaluate nodes coordinates? I mean I want to draw and manipulate graph by clicking...
Tavern asked 22/3, 2013 at 20:11
1
Solved
I used the convexHull algorithm to find the contour for some... irregular shape. It is not good enough though...
Quite possibly because I can't guarantee that the shape I have is convex...
I have...
Lovash asked 20/2, 2013 at 0:36
6
Solved
I'm creating a tool for displaying Python project as an UML diagram (+ displaying some code error detection using GUI).
I scan some project using Pyreverse and I have all data I need for drawing UM...
Spermato asked 4/4, 2012 at 23:45
1
Solved
I want to render a graph in similar layout to the following one:
I tried this:
digraph EDP
{
graph [colorscheme=paired12];
node [label="\N", shape=box, style="rounded,filled", colorscheme=pai...
Garnett asked 29/11, 2011 at 21:52
5
I want to embed a flow diagram drawing canvas in my program.
Users would possible to:
draw "nodes" (rectangle nodes is enough) and "edges" (preferable to be orthogonal) to connect
"nodes";
...
Redbird asked 29/5, 2011 at 14:50
1
I'm looking into writing a program that will show a graph to the user. The graph will change over time (the user should be able to right-click on a graph item and ask for more detail, which will po...
Thecla asked 11/3, 2010 at 17:20
3
Solved
I'd like to programmatically create diagrams like this
(source: yaroslavvb.com)
I imagine I should use GraphPlot with VertexCoordinateRules, VertexRenderingFunction and EdgeRenderingFunction for...
Beall asked 3/11, 2010 at 21:11
1
Solved
Does anyone have any general tips for reducing the size of a graph generated by graphviz (size as in area, not as in file size).
I have a fairly large graph (700 nodes). I set a smaller font size ...
Flange asked 6/8, 2010 at 23:17
2
Solved
Laying out the verticies in a DAG in a tree form (i.e. verticies with no in-edges on top, verticies dependent only on those on the next level, etc.) is rather simple without graph drawing algorithm...
Enrapture asked 17/5, 2010 at 21:47
4
In graph theory, a planar graph is a graph that can be embedded in the plane, i.e., it can be drawn on the plane in such a way that its edges intersect only at their endpoints.
Their are man...
Hurds asked 21/1, 2010 at 6:3
5
Solved
I have perfection paralysis when it comes to producing something graphic. If symmetries of the visual have not been fully explored, I have a harder time comprehending what is going on. I am a very ...
Dormant asked 17/2, 2010 at 2:59
7
Solved
What algorithms are good for interactive/realtime graph-drawing for live data and direct-manipulation?
Failing that - what libraries do you use to draw graphs?
Suggestions;
Prefuse informatio...
Cherenkov asked 5/12, 2008 at 23:57
1
© 2022 - 2024 — McMap. All rights reserved.