DOT - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


DOT (.dot, .gv) Graph Format

DOT file format

 

Description

Examples

Description

• 

DOT is a simple text-based file format for storing a single undirected or directed graph.

• 

It also allows the application of attributes to nodes, edges and graphs.

• 

The GraphTheory[ImportGraph] and GraphTheory[ExportGraph] commands can read from and write to this format.

• 

The general-purpose commands Import and Export also support this format.

Examples

withGraphTheory:

Import a DOT file encoding a directed graph.

GImportexample/digraph.dot,base=datadir

GGraph 1: a directed graph with 11 vertices and 12 arc(s)

(1)

DrawGraphG,style=spring

Export the Desargues graph to a DOT file in the home directory of the current user.

DGGraphTheory:-SpecialGraphs:-DesarguesGraph

DGGraph 2: an undirected graph with 20 vertices and 30 edge(s)

(2)

Exportdesargues.dot,DG,base=homedir

370

(3)

See Also

Formats

GraphTheory