read.undirected.graph: Read an undirected graph from a file
Description
Read a graph from a file and build a graphNEL object. The format of the input file is a sequence of rows.
Each row corresponds to an edge represented through a pair of vertexes (blank separated) and the weight of the edge.
Usage
read.undirected.graph(file = "graph.txt.gz")
Arguments
file
name of the file to be read. The extension of the file can be plain (".txt") or compressed (".gz").