[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] Best practice for very dynamic network? - Page 2
Page 2 of 2

Re: Best practice for very dynamic network?

Posted: 23 May 2012 15:38
by admin
ok, so it's because of the start attribute in weight. Just remove them, as it seems to mess up the parser because of the spells.

Re: Best practice for very dynamic network?

Posted: 23 May 2012 15:40
by eduramiba
Yes, that is the problem.
If you still want to use dynamic weight, I think you have to include this code before <nodes>:

Code: Select all

<attributes class="edge" mode="dynamic">
    <attribute id="weight" title="Weight" type="float"/>
</attributes>
And that makes your file work.

Eduardo

Re: Best practice for very dynamic network?

Posted: 23 May 2012 16:40
by miturian
thanks :)

yes, that seems to solve it.