ComeçarComece de graça

Basic drawing of a network using NetworkX

NetworkX provides some basic drawing functionality that works for small graphs. We have selected a subset of nodes from the graph for you to practice using NetworkX's drawing facilities. It has been pre-loaded as T_sub.

Este exercício faz parte do curso

Introduction to Network Analysis in Python

Ver curso

Instruções do exercício

  • Import matplotlib.pyplot as plt and networkx as nx.
  • Draw T_sub to the screen by using the nx.draw() function, and don't forget to also use plt.show() to display it.

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Import necessary modules
____
____

# Draw the graph to screen
____
____
Editar e executar o código