igraph (version 1.2.4.1)

graph_: Convert object to a graph

Description

This is a generic function to convert R objects to igraph graphs.

Usage

graph_(...)

Arguments

...

Parameters, see details below.

Details

TODO

Examples

Run this code
# NOT RUN {
## These are equivalent
graph_(cbind(1:5,2:6), from_edgelist(directed = FALSE))
graph_(cbind(1:5,2:6), from_edgelist(), directed = FALSE)
# }

Run the code above in your browser using DataCamp Workspace