For some reason add_star() is not inputting the attributes to the nodes.
JavaScript
x
11
11
1
import networkx as nx
2
G = nx.Graph()
3
nx.add_star(G, [0,1,2], weight=1)
4
5
>>>G.nodes.data()
6
NodeDataView({0: {}, 1: {}, 2: {}})
7
8
>>>G.node[0]
9
{}
10
11
Any idea what’s going on??
Versions: Python 2.7 Networkx 2.2
Advertisement
Answer
If by attributes you mean the edge weights, the weights are added as edge attributes:
JavaScript
1
5
1
G = nx.Graph()
2
nx.add_star(G, [0,1,2], weight=1)
3
G.edges(data=True)
4
# EdgeDataView([(0, 1, {'weight': 1}), (0, 2, {'weight': 1})])
5