Questions tagged [graphviz]

Graphviz, developed by AT&T Research Labs, is the leading application for layout and drawing of graphs (objects comprised of vertices connected by edges). It includes the dot language, a complete syntax for graph description and a set of layout engines. Graphviz is free and open source.

Graphviz, developed by AT&T Research Labs, is the leading application for the layout and drawing of graphs (objects comprised of vertices connected by edges). It includes the dot language -- a complete syntax for graph description -- and a set of layout engines. Graphviz is free and open source.

Useful Graphviz Resources

Related Tags

2917 questions
1
vote
1 answer

How to use shinyjs to link graphviz node data to the Shiny UI htmlOutput?

I'd like to be able to select a node (with tooltip) in my graphviz diagram, and have the text information associated with that node be output in the shiny UI (e.g. htmlOutput/renderUI). This question follows on from another question (Is it possible…
rob99985
  • 157
  • 9
1
vote
1 answer

pydotplus is not working correctly, descision-tree visualizaion errior?

Actually I'm using sklearn for visualizing decision tree. I have already installed graphviz and pydotplus and also set the environment variable of graphviz but when i run this code, it gives an error. I'm using "kyphosis" dataset. Here is the actual…
1
vote
0 answers

Creating large webgraphs on the command line

Am I going about this this right way? I have a file called input.txt that has data like this: digraph G { rankdir=LR node [shape=box style=filled] A->B A->C A->D B->D C->E E->F } I then input that into dot.exe which creates the data.dot…
GFL
  • 1,278
  • 2
  • 15
  • 24
1
vote
1 answer

brew install graphviz - [#, #] cannot be installed as binary package and must be built from source

When I try to write brew install graphviz in the terminal the error is Error: The following formula [#Dependency: "python" []>, #] cannot be installed as binary package and must be built from source. Install the Command Line Tools: …
smallbirds
  • 877
  • 12
  • 35
1
vote
1 answer

How to zoom generated graphviz svg to particular node and scroll to element?

I have very large generated svg by graphviz tool I am loading as static image then I am adding user interaction by using jquery.graphviz.svg which helps to zoom, highlight and unhighlight nodes but i need to add find me functionality where i am…
1
vote
1 answer

Graphviz focus on a node

I'm creating a scenario where I create a graph from an XML file (nodes+edges). The graph is being generated as an SVG inside an iframe. What I want to do is to be able to click on a node and have that node focused (different colour, scrolled into…
recluze
  • 1,920
  • 4
  • 21
  • 34
1
vote
1 answer

How to fix "conda: not found" error in Ubuntu

I was trying to download the graphviz library via conda in Jupyter Notebook (later I checked in terminal it goes in the same way). Unfortunately, I see the warning conda not found. Firstly, I wrote this (in Jupyter): !pip install conda --user and…
1
vote
2 answers

Visualization of a decision tree inside a pipeline

I would like to visualize my decision tree with export_graphviz, however I keep on getting the following error: File "C:\Users\User\AppData\Local\Continuum\anaconda3\envs\data_science\lib\site-packages\sklearn\utils\validation.py", line 951, in…
thiR
  • 73
  • 11
1
vote
1 answer

How to enforce grid layout in graphviz/pydot?

tl;dr: How do I make graphviz stick to a grid layout of nodes? I'm trying to draw a "full causal graph" for a time series. This means that I have some graph with Units and Time indices repeating in the time direction. I want to draw the graph with…
LudvigH
  • 3,662
  • 5
  • 31
  • 49
1
vote
1 answer

Is there a way to add arrow from a token/word to another in graphviz?

I'm wondering if it's possible to create something like this usint graphviz, where an arrow points from a token/word to the other, instead of a node.
laike9m
  • 18,344
  • 20
  • 107
  • 140
1
vote
1 answer

In GraphViz, make node positions within a subgraph independent from nodes in other subgraphs?

Using dot, the basic layout puts nodes into layers. If you create subgraphs, it groups related nodes inside of rectangles, but the nodes are still in layers, and those layers are influenced by the nodes outside of the subgraph. Sometimes, this is…
John Arrowwood
  • 2,370
  • 2
  • 21
  • 32
1
vote
0 answers

Creating a single graph with two different layouts (e.g. circle outside and unordered inside)

I'm attempting to produce a graph using graphviz that produces a visualisation like this fantastic one(!;…
rob99985
  • 157
  • 9
1
vote
1 answer

merging multiple graphviz DOT files in Windows for gvpack

I have a large C codebase for which I had to generate Call graphs. I was kind of successful using Doxygen, but the problem now is, Doxygen generates a different DOT file for every function etc,.. I found another tool within GraphViz called gvpack…
Hari Krishna
  • 551
  • 6
  • 21
1
vote
1 answer

How to print a YACC grammar graph starting from a specific node?

I have a vast YACC grammar for processing a family of related standards. I want to print its graph with bison --graph command, but the generated .dot file has over 40 thousand lines. The graph is so big, xdot and dot tools are unable to render it. I…
1
vote
0 answers

Erd diagram with Graphviz: How to improve the rendering layout

I implemented a short python script using the graphviz library which parse a given documentation and automate the rendering of a simplified ER Diagram. I achieved to render the entities and their relations, but the resulting layout is not…
olinox14
  • 6,177
  • 2
  • 22
  • 39
1 2 3
99
100