[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 583: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 639: sizeof(): Parameter must be an array or an object that implements Countable
Gephi forumsPlease post new questions on facebook group too (https://www.facebook.com/groups/gephi) 2012-06-06T19:14:08+01:00 https://mail.forum-gephi.org/app.php/feed/topic/1925 2012-06-06T19:14:08+01:002012-06-06T19:14:08+01:00 https://mail.forum-gephi.org/viewtopic.php?t=1925&p=6637#p6637 <![CDATA[Re: graphMLnode data importing as property rather than attri]]> It seems that "d3" is associated with the label property for nodes.
The reason is that "d3" is the default node label used by yEd from yworks.com. It also associates "d7" to edge labels.

Change yours to d5 or something else than d3 and it works.

You can check all property associations here https://github.com/gephi/gephi/blob/mas ... aphML.java

Eduardo

Statistics:Posted by eduramiba — 06 Jun 2012 19:14


]]>
2012-06-05T16:03:51+01:002012-06-05T16:03:51+01:00 https://mail.forum-gephi.org/viewtopic.php?t=1925&p=6621#p6621 <![CDATA[graphMLnode data importing as property rather than attribute]]>
I'm having a bizarre issue where one of my node data keys keeps importing as a property rather than an attribute and I can't seem figure out what's causing it. See the below example: it's "listed_count" that's giving me trouble. Thanks!

<?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 attr.name="weight" attr.type="int" for="edge" id="d4" />
<key attr.name="weight" attr.type="int" for="node" id="d2" />
<key attr.name="screen_name" attr.type="string" for="node" id="d1" />
<key attr.name="listed_count" attr.type="int" for="node" id="d3" />
<key attr.name="followers_count" attr.type="int" for="node" id="d0" />
<graph edgedefault="directed">
<node id="30924802">
<data key="d0">65765</data>
<data key="d1">jeffreypjacobs</data>
<data key="d2">171</data>
<data key="d3">954</data>
</node>
</graph>
</graphml>

Statistics:Posted by axfelix — 05 Jun 2012 16:03


]]>