LoadConnListStr (SWIG)¶
-
LoadConnListStr
(GraphType, InFNm, StrToNIdH)
Loads a (directed, undirected, or multi) graph from a text file, InFNm, with 1 node and all its edges in a single line.
InFNm is a whitespace separated file of several columns: <source node name> <destination node name 1> <destination node name 2> … First column of each line contains a source node name followed by ids of the destination nodes. For example, ‘A B C’ encodes edges A–>B and A–>C. Note that this format allows for saving isolated nodes.
Parameters:
- GraphType: graph class (input)
Class of output graph – one of
PNGraph
,PNEANet
, orPUNGraph
.
- InFNm: string (input)
Filename with the description of the graph nodes and edges.
- StrToNIdH:
TStrIntSH
, a hash table of string keys and int values (output) Stores the mapping from node names to node ids. Note that this is a special hash table for holding strings and has a different interface than the standard SNAP hash table. Use GetDat(name) to obtain a mapping from a node name to its node id.
- StrToNIdH:
Return value:
- graph
A Snap.py graph of the specified type GraphType.
The following example shows how to load each of the graph types from a file named test.dat:
import snap
H = snap.TStrIntSH()
Graph = snap.LoadConnListStr(snap.PNGraph, "test.dat", H)
H = snap.TStrIntSH()
UGraph = snap.LoadConnListStr(snap.PUNGraph, "test.dat", H)
H = snap.TStrIntSH()
Network = snap.LoadConnListStr(snap.PNEANet, "test.dat", H)
A sample of test.dat is:
A B C
B C D