Statistics:Posted by gephi_gold — 14 Jun 2013 15:39
Statistics:Posted by paul — 05 Apr 2010 12:02
Statistics:Posted by paul — 02 Apr 2010 14:13
Statistics:Posted by admin — 02 Apr 2010 13:24
Statistics:Posted by paul — 02 Apr 2010 13:10
Well that's exactly what you can't do because of parallel edges... Not htat simple when the same links has to be live hten dead then live again etc...You have to declare two edges. The principle is simple: each element comes into existence, live...and die.
CODE:
<edge ... ... ... start="2009-01-01" end=2009-12-31"> <slices> <slice end="2009-03-01"/><!-- only one (the first) slice may contains a single 'end' attribute; 'start' is simply inferred from the parent tag (edge's start), if present. if not, from the graph's start --> <slice start="2009-02-05" end="2009-03-01"/> <slice start="2009-03-05" end="2009-03-10"/><!--all other slices must of course be strictly defined in the time --> <slice start="2009-06-01"/><!-- only one (the last) slice may contains a single 'start' attribute; 'end' is simply inferred from the parent tag (edge's end), if present. if not, from the graph's end --> </slices></edge>
Statistics:Posted by jbilcke — 02 Apr 2010 12:56
Ok cool I go for this solution then.Can I for instance declare different attribute values for one attribute id with different start and end dates ?
That's the good way to to.
Statistics:Posted by paul — 02 Apr 2010 09:07
You have to declare two edges. The principle is simple: each element comes into existence, live...and die.How an edge has to be coded in gexf to be present or hidden at different dates which are not a continued period of time ?
That's the good way to to.Can I for instance declare different attribute values for one attribute id with different start and end dates ?
That's the current behavior. Default value is declared at attribute's declaration.And when the attribute isn't set (from 2007-01-27 to 2007-02-13 and from 2007-03-20 to 2007-04-21 in my example) gephi could use default value ?
Statistics:Posted by admin — 01 Apr 2010 20:20
CODE:
<edge source="3369" end="2007-01-22" target="2949" weight="1" start="2007-01-22" id="133"> <attvalues> <attvalue for="0" value="1"/> </attvalues> </edge> <edge source="3369" end="2007-01-20" target="2949" weight="1" start="2007-01-20" id="131"> <attvalues> <attvalue for="0" value="1"/> </attvalues> </edge>
CODE:
<edge source="3369" end="2007-05-30" target="2949" weight="1" start="2007-01-22" id="133"> <attvalues> <attvalue for="0" value="1" start="2007-01-22" end="2007-01-26"/> <attvalue for="0" value="2" start="2007-02-14" end="2007-03-19"/> <attvalue for="0" value="3" start="2007-04-22" end="2007-05-30"/> </attvalues> </edge>
Statistics:Posted by paul — 01 Apr 2010 18:25