![]() |
STAG Python
1.2.1
Spectral Toolkit of Algorithms for Graphs
|
Functions | |
graph.Graph | load_edgelist (str filename) |
Load a graph from an edgelist file. | |
def | save_edgelist (graph.Graph g, str filename) |
Save a graph as an edgelist file. | |
graph.Graph | load_adjacencylist (str filename) |
Load a graph from an adjacencylist file. | |
def | save_adjacencylist (graph.Graph g, str filename) |
Save a graph as an adjacency list file. | |
def | edgelist_to_adjacencylist (str edgelist_fname, str adjacencylist_fname) |
Convert an edgelist file to an adjacency list. | |
def | adjacencylist_to_edgelist (str adjacencylist_fname, str edgelist_fname) |
Convert an adjacency list file to an edgelist. | |
graph.Graph stag.graphio.load_edgelist | ( | str | filename | ) |
Load a graph from an edgelist file.
We define an edgelist file in the following way.
All other lines are of one of the formats
<u>, <v>, <weight>
<u>, <v>
<u> <v> <weight>
<u> <v>
where <u>
and <v>
can be parsed as integers, and <weight>
can be parsed as a double. If the weight is omitted, it is taken to be 1.
Here is an example edgelist file.
filename | the name of the edgelist file to be loaded |
runtime_error | if the file doesn't exist or cannot be parsed as an edgelist |
def stag.graphio.save_edgelist | ( | graph.Graph | g, |
str | filename | ||
) |
Save a graph as an edgelist file.
g | the graph object to be saved |
filename | the name of the file to save the edgelist data to |
graph.Graph stag.graphio.load_adjacencylist | ( | str | filename | ) |
Load a graph from an adjacencylist file.
The adjacency list file format is defined in the following way.
#
or //
are ignored<node_id>: <list of neighbours>
, where <node_id>
is an integer and <list of neighbours>
is either a space-separated list of integers or a space-separated list of <id>:<weight>
where <id>
gives the id of the neighbour and <weight>
is the weight of the edge.<node IDs>
of each line must be sorted in increasing order.Here is an example adjacencylist file.
# This line is ignored 0: 1 2 1: 0 2 3 2: 0 1 3: 1
The following example includes weighted edges.
# This line is ignored 0: 1:0.5 2:0.5 1: 0:0.5 2:1 2: 0:0.5 1:1
Note that this method loads the entire graph into memory. For large graphs, the stag.graph.AdjacencyListLocalGraph object can be used to access the graph in a 'local' way without reading the entire graph into memory.
filename | the name of the adjacency list file to be loaded |
runtime_error | if the file doesn't exist or cannot be parsed as an adjacency list |
def stag.graphio.save_adjacencylist | ( | graph.Graph | g, |
str | filename | ||
) |
Save a graph as an adjacency list file.
g | the graph object to be saved. |
filename | the name of the file to save the adjacency list data to. |
def stag.graphio.edgelist_to_adjacencylist | ( | str | edgelist_fname, |
str | adjacencylist_fname | ||
) |
Convert an edgelist file to an adjacency list.
edgelist_fname | the name of the file containing the edgelist. |
adjacencylist_fname | the name of the file to write the adjacency list. |
def stag.graphio.adjacencylist_to_edgelist | ( | str | adjacencylist_fname, |
str | edgelist_fname | ||
) |
Convert an adjacency list file to an edgelist.
adjacencylist_fname | the name of the file containing the adjacency list. |
edgelist_fname | the name of the file to write the edgelist. |