[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
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
Gephi forums •[SOLVED] Suggested Time Value Scale?
Page 1 of 1

[SOLVED] Suggested Time Value Scale?

Posted: 03 Nov 2011 00:18
by cpdiehl
I'm attempting to use the new spreadsheet format to import a dynamic network into Gephi 0.8 beta. I've just finished creating a node file with time intervals. I imported that into Gephi just to see if I could see the node presence modulate over time as the visualization progresses. The problem is that when I press play, I see nothing happen.

Is there documentation that explains in more detail how to use the timeline controls and what sort of scale we should use for the time values? When I press play, I assume it steps forward in time at some interval? How does one define that interval?

Thanks, Chris

Re: Suggested Time Value Scale?

Posted: 03 Nov 2011 20:40
by elijah
The time intervals need to be transformed using the Merge Column function:

http://wiki.gephi.org/index.php/Import_ ... e_Interval

Re: Suggested Time Value Scale?

Posted: 03 Nov 2011 21:01
by eduramiba
You can also parse time intervals directly with the following syntax
<[1, 3]>

Eduardo

Re: Suggested Time Value Scale?

Posted: 04 Nov 2011 19:02
by elijah
Eduardo, would that work with multiple blocks? For instance, if I have a link that is active in January and February and active again in July and August, could I write <[1,2],[7,8]> or do I need to write something that produces a custom GEXF, which is the only way I thought it was possible to have that kind of intervals.

Re: Suggested Time Value Scale?

Posted: 04 Nov 2011 21:27
by eduramiba
Yes, you can parse time intervals like

Code: Select all

<[1,2];[7,9]>
for multiple blocks.

Eduardo

Re: Suggested Time Value Scale?

Posted: 04 Nov 2011 21:54
by elijah
Sorry to be pedantic, but I'm not in a place to test this and I want to make sure I understand correctly, is it possible for me to pull this in from a database field formatted like that? If so, what variable type does the field need?

Re: Suggested Time Value Scale?

Posted: 04 Nov 2011 23:48
by eduramiba
No problem :)

The column needs to have TimeInterval type so it can parse that syntax.
For other dynamic types the syntax is similar (see https://gephi.org/users/supported-graph ... preadsheet).

Eduardo