read.undirected.graph {HEMDAG} | R Documentation |
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"). |
Value
A graph of class graphNEL
.
Examples
edges <- system.file("extdata/edges.txt.gz", package="HEMDAG");
g <- read.undirected.graph(file=edges);
[Package HEMDAG version 2.7.4 Index]