[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 •Gephi Warning gexf version 1.2 is deprecated
Page 1 of 1

Gephi Warning gexf version 1.2 is deprecated

Posted: 02 Oct 2017 11:40
by CodeIt
Hello,
when I'm trying to write graphs in gexf format and open it with Gephi then I get the warning that the
gexf version 1.2 is deprecated.
When trying to solve the problem with

nx.write_gexf(graph, "gephifile.gexf", version="1.3draft")

I get the error message:
networkx.exception.NetworkXError: Unknown GEXF version 1.3draft

I use Python 3.4 and installed networkx with the following command: pip install networkx.

How can I avoid this warning? How can I upgrade to gexf version 1.3?

Thankx in advance.

Re: Gephi Warning gexf version 1.2 is deprecated

Posted: 02 Oct 2017 12:06
by eduramiba
It seems networkx does not recognize 1.3.
You can continue using 1.2 without problems anyway, the import should work fine in Gephi.

Re: Gephi Warning gexf version 1.2 is deprecated

Posted: 02 Oct 2017 12:28
by CodeIt
Thank you