Hello, im trying to get the adjency matrix from a certain graph, like in the following example import networkx as nx G = nx.Graph() G.add_edges_from([(1, 2), (2, 3), (3, 4)]) adjacency_matrix = nx.adjacency_matrix(G) print(adjacency_matrix.toarray()) **AttributeError: mo...