@@ -7,9 +7,9 @@ GraphIO provides support to [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl
77
88Currently, the following functionality is provided:
99
10- Format | Read | Write | Multiple Graphs| Format Name |
11- --------------|------|-------|----------------|--------------|
12- [ EdgeList] | ✓ | ✓ | |EdgeListFormat|
10+ Format | Read | Write | Multiple Graphs| Format Name | Comment |
11+ --------------|------|-------|----------------|--------------|----------|
12+ EdgeList | ✓ | ✓ | |EdgeListFormat| a simple list of sources and dests separated by whitespace and/or comma, one pair per line. |
1313[ GML] | ✓ | ✓ | ✓ |GMLFormat |
1414[ Graph6] | ✓ | ✓ | ✓ |Graph6Format |
1515[ GraphML] | ✓ | ✓ | ✓ |GraphMLFormat |
@@ -18,13 +18,6 @@ Format | Read | Write | Multiple Graphs| Format Name |
1818[ DOT] | ✓ | | ✓ |DOTFormat |
1919[ CDF] | ✓ | | |CDFFormat |
2020
21- [ EdgeList] : a simple list of sources and dests separated by whitespace and/or comma, one pair per line.
22- [ GML ] : https://en.wikipedia.org/wiki/Graph_Modelling_Language
23- [ Graph6 ] : https://users.cecs.anu.edu.au/~bdm/data/formats.html
24- [ GraphML ] : https://en.wikipedia.org/wiki/GraphML
25- [ Pajek NET ] : https://gephi.org/users/supported-graph-formats/pajek-net-format/
26- [ GEXF ] : https://gephi.org/gexf/format/
27- [ DOT ] : https://en.wikipedia.org/wiki/DOT_(graph_description_language)
2821
2922Graphs are read using either the ` loadgraph ` function or, for formats that support multiple graphs in a single file,
3023the ` loadgraphs ` functions. ` loadgraph ` returns a Graph object, while ` loadgraphs ` returns a dictionary of Graph objects.
@@ -35,4 +28,10 @@ For example, an edgelist file could be loaded as:
3528graph = loadgraph (" path_to_graph/my_edgelist.txt" , " graph_key" , EdgeListFormat ())
3629```
3730
38-
31+ [ CDF ] : http://www2.ee.washington.edu/research/pstca/formats/cdf.txt
32+ [ GML ] : https://en.wikipedia.org/wiki/Graph_Modelling_Language
33+ [ Graph6 ] : https://users.cecs.anu.edu.au/~bdm/data/formats.html
34+ [ GraphML ] : https://en.wikipedia.org/wiki/GraphML
35+ [ Pajek NET ] : https://gephi.org/users/supported-graph-formats/pajek-net-format/
36+ [ GEXF ] : https://gephi.org/gexf/format/
37+ [ DOT ] : https://en.wikipedia.org/wiki/DOT_(graph_description_language)
0 commit comments