In this recipe we take the data we collected in the previous recipe and create a force-directed network visualization of the page relationships using the NetworkX Python library.
Visualizing page relationships on Wikipedia
Getting ready
NetworkX is software for modeling, visualizing, and analyzing complex network relationships. You can find more information about it at: https://networkx.github.io. It can be installed in your Python environment using pip install networkx.
How to do it
The script for this example is in the 08/06_visualizze_wikipedia_links.py file. When...