completegraph | R Documentation |
From Wikipedia: "a complete graph is a simple undirected graph in which every pair of distinct vertices is connected by a unique edge. A complete digraph is a directed graph in which every pair of distinct vertices is connected by a pair of unique edges (one in each direction
completegraph(nodes, isDirected = FALSE)
nodes |
a character vector with node names, each element defines a node hence the elements need to be unique |
isDirected |
a boolean scalar to indicate wheter the returned object is a complete graph (undirected) or a complete digraph (directed). |
Note that this function masks the completegraph function of the graph package. Hence it is a good idead to specify the package namespace with ::, i.e. loon::completegraph and graph::completegraph.
For more information run: l_help("learn_R_display_graph.html.html#graph-utilities")
graph object of class loongraph
g <- loon::completegraph(letters[1:5])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.