简体   繁体   中英

Plot a connectivity graph with adjacency matrix and coordinates list in python

I have a set of points (x,y) coordinates and also adjacency matrix which gives details of connectivity. I want to plot the physical coordinates with the given connectivity. I know networkx is useful to create a connectivity graph and scatter plot plots the physical coordinates. But what I want is both.

You can plot both coordinates and connectivity with Networkx .

import networkx as nx
import numpy as np

pos = np.random.rand(10, 2) #coordinates, (x, y) for 10 nodes
connect = [tuple(np.random.random_integers(0, 9, size=(2))) for x in range(8)] #random connections

#creation of the graph
graph = nx.Graph()
#adding nodes/connections in the graph
for node in range(len(pos)):
    graph.add_node(node)
graph.add_edges_from(connect)

#plot of the nodes using the (x,y) pairs as coordinates
nx.draw(graph, [(x,y) for x,y in pos], node_size=50)

图形

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM