Reduce a graph to have unique node names

graphreduce(graph, separator)

Arguments

graph

graph of class loongraph

separator

one character that separates the spaces in node names

Value

graph object of class loongraph

Details

Note this is a string based operation. Node names must not contain the separator character!

Examples

G <- completegraph(nodes=LETTERS[1:4]) LG <- linegraph(G) LLG <- linegraph(LG) R_LLG <- graphreduce(LLG)