Add all the edges in ebunch as weighted edges with specified weights.
Parameters: | ebunch : container of edges
attr : keyword arguments, optional (default= no attributes)
|
---|
See also
Notes
Adding the same edge twice has no effect but any edge data will be updated when each duplicate edge is added.
Examples
>>> G = nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.add_weighted_edges_from([(0,1,3.0),(1,2,7.5)])