Visualization of graphs

Source: Internet
Author: User

Recently, looking at some algorithms, we need to show the data structure of the abstract graph in a visual way, I thought matplotlib might have potential support, and found a module networkx about the calculation and display of graphs. This module is very convenient to use, support dict based adjacency table, to assist graph theory learning is very good.

#-*-encoding:utf-8-*- fromMatplotlibImportPyplot as PltImportNetworkx as NxN= {    'a': {'b','C','D','e','F'},    'b': {'C','e'},    'C': {'D'},    'D': {'e'},    'e': {'F'},    'F': {'C','g','h'},    'g': {'F','h'},    'h': {'F','g'},}labels= {I:i forIinchN.keys ()} G=NX. DiGraph (N) POS=Nx.spring_layout (g) Nx.draw (g, POS, Node_color='R', edge_color='b') Nx.draw_networkx_labels (G, POS, labels, font_size=16, font_color='g') Plt.axis ('off') Plt.savefig ("Labels_and_colors.png")#Save as PNGPlt.show ()#Display

Visualization of graphs

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.