Learn R Programming

HEMDAG (version 2.7.4)

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").

Value

A graph of class graphNEL.

Examples

Run this code
# NOT RUN {
edges <- system.file("extdata/edges.txt.gz", package="HEMDAG");
g <- read.undirected.graph(file=edges);
# }

Run the code above in your browser using DataLab