graph.full.bipartite {igraph} | R Documentation |
Create a full bipartite graph
Description
graph.full.bipartite()
was renamed to make_full_bipartite_graph()
to create a more
consistent API.
Usage
graph.full.bipartite(n1, n2, directed = FALSE, mode = c("all", "out", "in"))
Arguments
n1 |
The number of vertices of the first kind. |
n2 |
The number of vertices of the second kind. |
directed |
Logical scalar, whether the graphs is directed. |
mode |
Scalar giving the kind of edges to create for directed graphs.
If this is ‘ |
[Package igraph version 2.1.3 Index]