About 3,630,000 results
Open links in new tab
  1. Graphviz: How to go from .dot to a graph? - Stack Overflow

    Apr 2, 2024 · 604 Type dot -Tps filename.dot -o outfile.ps if you want to use the dot renderer. There are alternatives like neato and twopi. If Graphviz isn't in your path, figure out where it is installed and run …

  2. Plotting the Digraph with graphviz in python from DOT file

    This is the API reference for graphviz. I could not find any method that generates a directed graph from an existing dot source file. Methods like render and view save in a new file. How can I disp...

  3. GraphViz - How to connect subgraphs? - Stack Overflow

    The DOT user manual gives the following example of a graph with clusters with edges between clusters: IMPORTANT: The initial compound=true statement is required.

  4. How to use doxygen to create UML class diagrams from C++ source

    Jan 21, 2011 · DOT_GRAPH_NODES limits the number of entries on a single page and MAX_DOT_GRAPH_DEPTH restricts how deep it goes. Setting these to large values makes it very …

  5. graph - Graphviz Dot Algorithm - Stack Overflow

    Is there any documentation (full pseudo code?) on the algorithm from dot within the Graphviz Library? I only found some partial pseudo code documentation.

  6. Converting dot to png in python - Stack Overflow

    Load the file with pydot.graph_from_dot_file to get a pydot.Dot class instance. Then write it to a PNG file with the write_png method.

  7. laying out a large graph with graphviz - Stack Overflow

    neato -x -Tpng data.dot > data.png I would be happy for the resulting image to be several megapixels. How can I lay out and render such a big graph? I am open to non-dot suggestions, like Python …

  8. Multiple graphs inside Graphviz DOT file - Stack Overflow

    Sep 13, 2020 · When I put the above two graphs inside the same DOT file named supporting.dot and I run dot -Tpng -o supporting.png supporting.dot command, terminal prints out some jiberish and the …

  9. parsing - How to parse a DOT file in Python - Stack Overflow

    A DOT file represents a graph which consists of nodes and edges. I guess that nodes are input or output point, and edge between two nodes represents transportation. If you show the .dot file, you may be …

  10. Display this decision tree with Graphviz - Stack Overflow

    g = graphviz.Source(dot_graph) use g.render() to create an image file. When I ran it on your code without an argument I got a Source.gv.pdf but you can specify a different file name. There is also a …