[SOLVED] GraphML import error in Beta?
Posted: 03 Nov 2010 04:26
Hello, I currently have two versions of Gephi which I compile from Netbeans.
In the most up to date version (Beta), the graphML file doesn't recognize "population" as a valid attribute. Instead it chooses to designate it as the node's "label". I have no idea what causes this behavior. This keeps me from being able to size nodes based of population, which is a big reason behind the entire file. I do not get this behavior with the "lat" attribute at all.
Here's a snippet from the graphML file
The Alpha version of Gephi recognizes population as an attribute, like it should. What's causing this in the Beta version?
Thanks
In the most up to date version (Beta), the graphML file doesn't recognize "population" as a valid attribute. Instead it chooses to designate it as the node's "label". I have no idea what causes this behavior. This keeps me from being able to size nodes based of population, which is a big reason behind the entire file. I do not get this behavior with the "lat" attribute at all.
Here's a snippet from the graphML file
Code: Select all
<key id="d0" for="node" attr.name="city" attr.type="string"/>
<key id="d1" for="node" attr.name="state" attr.type="string"/>
<key id="d2" for="node" attr.name="country" attr.type="string"/>
<key id="d3" for="node" attr.name="population" attr.type="double"/>
<key id="d4" for="node" attr.name="lat" attr.type="double"/>
...
Thanks