Add a star.
The first node in nodes is the middle of the star. It is connected to all other nodes.
Parameters : | nodes : iterable container
attr : keyword arguments, optional (default= no attributes)
|
---|
Examples
>>> G = nx.Graph() # or DiGraph, MultiGraph, MultiDiGraph, etc
>>> G.add_star([0,1,2,3])
>>> G.add_star([10,11,12],weight=2)