Interactive graphs in loon are currently most often used for navigation graphs.
Usage
l_graph(nodes, ...)
# S3 method for class 'graph'
l_graph(nodes, ...)
# S3 method for class 'loongraph'
l_graph(nodes, ...)
# Default S3 method
l_graph(nodes = "", from = "", to = "", isDirected = FALSE, parent = NULL, ...)
See also
Other related graph objects, loongraph
,
completegraph
, linegraph
,
complement
, as.graph
Advanced usage l_navgraph
,
l_ng_plots
, l_ng_ranges
Examples
if(interactive()) {
G <- completegraph(nodes=names(iris))
LG <- linegraph(G, sep=":")
g <- l_graph(LG)
}