igraph-help
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [igraph] labelling vertices using python


From: Tamas Nepusz
Subject: Re: [igraph] labelling vertices using python
Date: Tue, 15 Jul 2008 15:11:01 +0200

create with this label. This all seems to be ok and when I plot the
graph without labels everything is fine (igraph.plot(g, "g.png",
vertex_label=None). However with labels I get the following errors,
Very strange indeed. Can you please send me an example list from which you try to construct the graph? I would need a serialized (pickled) variant of your nodeList variable; you can save it in a file called pickled_nodelist.dat as follows:

import pickle
f = open("pickled_nodelist.dat", "w")
pickle.dump(nodeList, f)
f.close()

Please send me the generated pickled_nodelist.dat and I'll try to dig deeper into this issue.

--
Tamas





reply via email to

[Prev in Thread] Current Thread [Next in Thread]