1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/make.R
\name{graph_}
\alias{graph_}
\title{Convert object to a graph}
\usage{
graph_(...)
}
\arguments{
\item{...}{Parameters, see details below.}
}
\description{
This is a generic function to convert R objects to igraph graphs.
}
\details{
TODO
}
\examples{
## These are equivalent
graph_(cbind(1:5, 2:6), from_edgelist(directed = FALSE))
graph_(cbind(1:5, 2:6), from_edgelist(), directed = FALSE)
}
|