Top "Graphviz" questions

Graphviz, developed by AT&T Research Labs, is the leading application for layout and drawing of graphs (objects comprised of vertices connected by edges).

graph.write_pdf("iris.pdf") AttributeError: 'list' object has no attribute 'write_pdf'

My code is follow the class of machine learning of google.The two code are same.I don't know why …

python machine-learning scikit-learn graphviz pydot
top-down subgraphs, left-right inside subgraphs

I'd like to have my graph looks like this: But I can only get this: The problem is, rankdir does …

graphviz subgraph
Networkx: how to show node and edge attributes in a graph drawing

I have a graph G with attribute 'state' for nodes and edges. I want to draw the graph, all nodes …

python graphviz networkx
Forcing orthogonal (vertical or horizontal) edges with dot

I would like to force dot displaying only vertical or horizontal edges between nodes. I have found a similar request …

graphviz dot edges orthogonal
Changing edge direction in dot

I'm trying to draw a pretty simple diagram in dot. digraph untitled { rankdir = LR; {rank=same; S; A} B -&…

graphviz dot
Right to left edges in dot (Graphviz)

I'm trying to display edges going from right to left (i.e. backwards) using dot: C <- A -&…

graphviz right-to-left graph-drawing
Placing clusters on the same rank in Graphviz

I would like these two nodes to appear on the same level: digraph G { subgraph cluster1 { label="Local Datacenter"; router1; …

graphviz
(Python) ValueError: Program dot not found in path

I have the following problem: I am on xUbuntu OS and I am trying to use networkx in a Flask …

python graphviz networkx xubuntu pygraphviz
Horizontal Trees in Graphviz

I've made a tree in the dot language, similar to the one here. Is there any way I could get …

graphviz dot
Graphviz .dot node ordering

I'm building a epsilon NFA to recognize a regular expression using the canonical construction. I'm using subgraphs to group various …

graphviz dot