I have an example of a graph with a graph property named random
that has a value of 23
. Is there a way to represent say a list of values as a graph attribute in this format without violating the core format?
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
<key id="g_random" for="graph" attr.name="random" attr.type="double"/>
<graph id="G" edgedefault="undirected">
<data key="g_random">23</data>
<node id="n0">
</node>
<node id="n1">
</node>
<edge source="n0" target="n1">
</edge>
</graph>
Thanks