Add a star.
The first node in nlist is the middle of the star. It is connected to all other nodes in nlist.
Parameters: | nlist : list
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)