[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [igraph] Save vertex property
From: |
Tamas Nepusz |
Subject: |
Re: [igraph] Save vertex property |
Date: |
Wed, 14 Jan 2015 15:09:50 +0100 |
User-agent: |
Mutt/1.5.23 (2014-03-12) |
> >>> graph = ig.Graph().Barabasi(graph.vcount()+3, 3, power=2.5,
> ... start_from=graph, outpref=True)
I'm quite surprised that it works at all to be honest. The correct invocation
would be:
ig.Graph.Barabasi(graph.vcount()+3, 3, power=2.5, ...)
Graph.Barabasi is a class method so it must be invoked directly on the Graph
class, not on a Graph instance. Can you repeat your code with the above
modification and check if the issue still persists?
All the best,
T.