[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:25:52+01:00 https://www.forum-gephi.org/app.php/feed/topic/1442 2012-06-06T19:25:52+01:002012-06-06T19:25:52+01:00 https://www.forum-gephi.org/viewtopic.php?t=1442&p=6638#p6638 <![CDATA[Re: Dynamic Edge Attribute Weight]]> The file with timeformat="date" works for me on Gephi 0.8.1 beta.
Do you get the same as the attached image in edge table?

Eduardo
weight.png

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


]]>
2012-06-05T19:44:41+01:002012-06-05T19:44:41+01:00 https://www.forum-gephi.org/viewtopic.php?t=1442&p=6625#p6625 <![CDATA[Re: Dynamic Edge Attribute Weight]]>
Please see the attache graph

<?xml version="1.0" encoding="UTF-8"?>
<gexf xmlns="http://www.gexf.net/1.2draft" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gexf.net/1.2draft http://www.gexf.net/1.2draft/gexf.xsd" version="1.2">
<meta lastmodifieddate="2009-03-20">
<creator>Gexf.net</creator>
<description>A Web network changing over time</description>
</meta>
<graph mode="dynamic" defaultedgetype="undirected" timeformat="date">
<attributes class="node" mode="static">
<attribute id="0" title="discipline" type="string"/>
</attributes>
<attributes class="edge" mode="dynamic">
<attribute id="weight" title="weight" type="float"/>
</attributes>
<nodes>
<node id="0" label="NODE0" start="2004" end="2008">
<attvalues>
<attvalue for="0" value="OC"/>
</attvalues>
</node>
<node id="1" label="NODE1" start="2004" end="2008">
<attvalues>
<attvalue for="0" value="OC"/>
</attvalues>
</node>
</nodes>
<edges>
<edge source="0" target="1">
<attvalues>
<attvalue for="weight" value="20.0" start="2004" end="2005"></attvalue>
<attvalue for="weight" value="5.0" start="2007" end="2008"></attvalue>
</attvalues>
</edge>
</edges>
</graph>
</gexf>

Statistics:Posted by ajay978 — 05 Jun 2012 19:44


]]>
2012-06-04T09:03:20+01:002012-06-04T09:03:20+01:00 https://www.forum-gephi.org/viewtopic.php?t=1442&p=6606#p6606 <![CDATA[Re: Dynamic Edge Attribute Weight]]> Statistics:Posted by admin — 04 Jun 2012 09:03


]]>
2012-06-03T21:53:16+01:002012-06-03T21:53:16+01:00 https://www.forum-gephi.org/viewtopic.php?t=1442&p=6597#p6597 <![CDATA[Re: Dynamic Edge Attribute Weight]]> Even I came across with this issue recently ?
Were you able to fix this issue ? please let me know.

Statistics:Posted by ajay978 — 03 Jun 2012 21:53


]]>
2011-10-06T16:21:17+01:002011-10-06T16:21:17+01:00 https://www.forum-gephi.org/viewtopic.php?t=1442&p=4827#p4827 <![CDATA[Dynamic Edge Attribute Weight]]>
I am new to dynamic graphics with Gephi and running short on time. Can someone please provide feedback as to
why the following code does not provide a dynamic visualization of the edge weight? I am expecting the edge
weight to be 20 for the year 2004 and the weight to be 5 for years 2005-2008.

Thanks for your help!

<?xml version="1.0" encoding="UTF-8"?>
<gexf xmlns="http://www.gexf.net/1.2draft" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gexf.net/1.2draft http://www.gexf.net/1.2draft/gexf.xsd" version="1.2">
<meta lastmodifieddate="2009-03-20">
<creator>Gexf.net</creator>
<description>A Web network changing over time</description>
</meta>
<graph mode="dynamic" defaultedgetype="undirected">
<attributes class="node" mode="static">
<attribute id="0" title="discipline" type="string"/>
</attributes>
<attributes class="edge" mode="dynamic">
<attribute id="weight" title="weight" type="float"/>
</attributes>
<nodes>
<node id="0" label="NODE0" start="2004" end="2008">
<attvalues>
<attvalue for="0" value="OC"/>
</attvalues>
</node>
<node id="1" label="NODE1" start="2004" end="2008">
<attvalues>
<attvalue for="0" value="OC"/>
</attvalues>
</node>
</nodes>
<edges>
<edge source="0" target="1">
<attvalues>
<attvalue for="weight" value="20.0" start="2004" end="2005"></attvalue>
<attvalue for="weight" value="5.0" start="2005" end="2008"></attvalue>
</attvalues>
</edge>
</edges>
</graph>
</gexf>

Statistics:Posted by jodi.basner — 06 Oct 2011 16:21


]]>