Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AttributeError: 'Graph' object has no attribute 'node'

I have bellow python code to build knn graph but I have an error: AttributeError: 'Graph' object has no attribute 'node'. It seems that the nx.Graph() has no node attribute but I don't know what should I replace with that.

import networkx as nx
def knn_graph(df, k, verbose=False):
    points = [p[1:] for p in df.itertuples()]
    g = nx.Graph()
    if verbose: print ("Building kNN graph (k = %d)" % (k))
    iterpoints = tqdm(enumerate(points), total=len(points)) if verbose else enumerate(points)
    for i, p in iterpoints:
        distances = map(lambda x: euclidean_distance(p, x), points)
        closests = np.argsort(distances)[1:k+1] # second trough kth closest
        for c in closests:
            g.add_edge(i, c, weight=distances[c])
        g.node[i]['pos'] = p
    return g
like image 299
nino Avatar asked Oct 23 '19 08:10

nino


1 Answers

If you are using NetworkX 2.4, use G.nodes[] instead of G.node[]. As the latter attribute is deprecated. See (https://networkx.github.io/documentation/stable/release/release_2.4.html#deprecations).

like image 58
Zechen Zhang Avatar answered Oct 15 '22 21:10

Zechen Zhang