Reduce a graph to have unique node names
graphreduce(graph, separator)
graph | graph of class loongraph |
---|---|
separator | one character that separates the spaces in node names |
graph object of class loongraph
Note this is a string based operation. Node names must not contain the separator character!
G <- completegraph(nodes=LETTERS[1:4]) LG <- linegraph(G) LLG <- linegraph(LG) R_LLG <- graphreduce(LLG)