[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) 2010-12-08T21:38:51+01:00 https://forum-gephi.org/app.php/feed/topic/554 2010-12-08T21:38:51+01:002010-12-08T21:38:51+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=2038#p2038 <![CDATA[Re: Recent updates on GEXF time support]]>
You do right, but this feature is currently not supported in Gephi. :?

Statistics:Posted by admin — 08 Dec 2010 21:38


]]>
2010-12-08T18:58:45+01:002010-12-08T18:58:45+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=2037#p2037 <![CDATA[Re: Recent updates on GEXF time support]]> i created a dynamic network with a dynamic attribute for nodes defined as:

CODE:

<attributes class="node" type="dynamic">   <attribute id="0" title="Attribute 1" type="float"/></attributes>
I would like for nodes to change their size according to this attribute. For that I am using in each node, for example:

CODE:

<node id="0" label="USA"><attvalues><attvalue for="0" value="9" start="2006" endopen="2007" /><attvalue for="0" value="21" start="2007" endopen="2008" /><attvalue for="0" value="17" start="2008" endopen="2009" /><attvalue for="0" value="19" start="2009" endopen="2010" /></attvalues><slices><slice start="2006" endopen="2010" /></slices>
With this, nodes are properly shown (i.e. whenever corresponds according to the slices), however, their size don't change according to the attribute id="0" (which I set in Ranking > Nodes).

Any thoughts on what could be wrong? Or is this something not supported in Gephi 0.7 yet?

Thanks a lot.

Statistics:Posted by Luciano — 08 Dec 2010 18:58


]]>
2010-11-28T18:12:54+01:002010-11-28T18:12:54+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=2000#p2000 <![CDATA[Re: Recent updates on GEXF time support]]> noted by Skye Bender-deMoll, we don't use the same concept of slices as described by their paper and implemented in SoNIA.

I propose to use a more accurate word. "Spell" seems good as it is a moment or a period of time.

Statistics:Posted by admin — 28 Nov 2010 18:12


]]>
2010-11-17T18:45:10+01:002010-11-17T18:45:10+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=1960#p1960 <![CDATA[Re: Recent updates on GEXF time support]]> Statistics:Posted by admin — 17 Nov 2010 18:45


]]>
2010-10-31T19:39:00+01:002010-10-31T19:39:00+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=1856#p1856 <![CDATA[Re: Recent updates on GEXF time support]]> Statistics:Posted by psychemedia — 31 Oct 2010 19:39


]]>
2010-10-21T18:16:59+01:002010-10-21T18:16:59+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=1815#p1815 <![CDATA[Re: Recent updates on GEXF time support]]> Statistics:Posted by admin — 21 Oct 2010 18:16


]]>
2010-09-26T21:12:42+01:002010-09-26T21:12:42+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=1638#p1638 <![CDATA[Re: Recent updates on GEXF time support]]> Statistics:Posted by mbastian — 26 Sep 2010 21:12


]]>
2010-09-26T21:13:58+01:002010-09-26T21:10:40+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=1637#p1637 <![CDATA[Re: Recent updates on GEXF time support]]>
This would allow developers to directly use timestamps, without need to convert it to a particular calendar reference, or XML format,
because timestamps are encoded in 64 bits too (if you still want to be able to load your GEXFs after 01-01-2038.. think about sustainable datasets ;))

Statistics:Posted by jbilcke — 26 Sep 2010 21:10


]]>
2010-09-26T20:35:24+01:002010-09-26T20:35:24+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=1636#p1636 <![CDATA[Re: Recent updates on GEXF time support]]>
I propose to replace float by double because double is how it is in Gephi.
Is not a good reason. What is the benefit of using doubles instead of floats?

Statistics:Posted by admin — 26 Sep 2010 20:35


]]>
2010-09-26T18:02:38+01:002010-09-26T18:02:38+01:00 https://forum-gephi.org/viewtopic.php?t=554&p=1635#p1635 <![CDATA[[FIXED] Recent updates on GEXF time support]]>
I propose the following changes/improvements:
  • Rename the "timetype" attribute in to "timeformat". This attribute is set on <graph> to specify how time information is encoded, either like a date or like a double.
  • The "timeformat" is currently either float or date and default value is date. I propose to replace float by double because double is how it is in Gephi. I also propose to set default value to double as is the one that is the less constrained, date needs a proper date (yyyy-mm-dd) formatting.
  • Add open intervals. Currently all intervals are inclusive. To be consistent we need open intervals as well. I propose therefore to add startopen and endopen attributes. Open intervals are also needed to convert fixed date points into time intervals concept. I explain

    If I have a value at three different points in the time:

    CODE:

    2001  =>  2.12002  =>  5.22003  =>  6.5
    converted to continuous, I believe we get:

    CODE:

    [2001, 2002)  =>  2.1[2002, 2003)  =>  5.2[2003, +inf]  =>  6.5
Another precision about dynamic attributes. In Gephi we now have new dynamic types for all static types (float, string, ...). I propose not to create new type keyword in GEXF but simply use these types when the type value is set to dynamic.

For example if I do:

CODE:

<attributes class="node" type="dynamic">   <attribute id="0" title="type" type="string"/>   <attribute id="1" title="Attribute 1" type="float"/></attributes>
That would create DYNAMIC_STRING and DYNAMIC_FLOAT attribute columns in Gephi. As several attributes markup can be definied in a GEXF file, it's easy to mix static and dynamic types.

Statistics:Posted by mbastian — 26 Sep 2010 18:02


]]>