Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
CodeDelphiRAD Studio

What Is The Best Graphs And Network Visualization Tool On Windows?

blog banner networkx for delphi

Did you know that it’s simple to use some truly excellent Python libraries to boost your Delphi app development on Windows?  These libraries are very easy to use and produce wonderful ways to produce graphs and network visualization.

Adding Python to your Delphi code toolbox can enhance your app development by bringing in new capabilities that allow you to provide innovative and powerful solutions to your app’s users, combining the best of Python with the supreme low-code and unparalleled power of native Windows development that Delphi provides.

Are you looking for how to build a GUI for graph and network visualization library? 

You can create, manipulate, and study the structure, dynamics, and functions of complex networks with NetworkX on Delphi. This article will demonstrate how to create a Delphi GUI app dedicated to the NetworkX library.

Watch this video by Jim McKeeth for a thorough explanation of why you can love both Delphi and Python at the same time:

 

Get to know with Embarcadero Python Ecosystem

Before we dive in more into the NetworkX4D GUI prototype, let’s get to know first about Embarcadero Python Ecosystem:

01 embarcaderopythonecosystem 6967843

And here are the Embarcadero Python Ecosystem licenses:

What Is The Best Graphs And Network Visualization Tool On Windows An image of the Embarcadero Python ecosystem licences

Which you can know more about them from the following webinars by Jim McKeeth:

 

What do we mean by graphs and network visualization?

In mathematics, and more specifically in graph theory, a graph is a structure consisting of a set of objects, some of which are “related.”

The objects correspond to mathematical abstractions known as vertices (also known as nodes or points), and each pair of related vertices is known as an edge (also called a link or line).

A graph is typically represented diagrammatically as a set of dots or circles for the vertices, joined by lines or curves for the edges. Graphs are one of the topics covered by discrete mathematics.

Graphs are the fundamental subject of graph theory. J. J. Sylvester coined the term “graph” in this context in 1878, referring to a direct relationship between mathematics and chemical structure (what he called chemico-graphical image).

Networks are all around us, and they are extremely important in our lives. Communication networks, social media networks, biological networks, and so on are all examples of networks.

 

Here are to name of a few examples of graphs and network visualizations:

The World’s social networks shown as a network graph

What Is The Best Graphs And Network Visualization Tool On Windows A social network visualization
Illustration of worldwide social network Image source <a href=httpscommonswikimediaorgwikiFileSocial Network Analysis Visualizationpng target= blank rel=noreferrer noopener nofollow>httpscommonswikimediaorgwikiFileSocial Network Analysis Visualizationpng<a>

A protein interaction network

What Is The Best Graphs And Network Visualization Tool On Windows A protein network diagram
The protein interaction network of Treponema pallidum Image source <a href=httpscommonswikimediaorgwikiFileThe protein interaction network of Treponema pallidumpng target= blank rel=noreferrer noopener nofollow>FileThe protein interaction network of Treponema pallidumpng Wikimedia Commons<a>

Coauthorship network of 2014 breaking news articles

What Is The Best Graphs And Network Visualization Tool On Windows A graph of news co authorship for 2014
Image source <a href=httpscommonswikimediaorgwikiFileCoauthorship network of 2014 breaking news articlespng target= blank rel=noreferrer noopener nofollow>httpscommonswikimediaorgwikiFileCoauthorship network of 2014 breaking news articlespng<a>

 

What is the NetworkX graphs and network visualization Library?

What Is The Best Graphs And Network Visualization Tool On Windows The NetworkX logo
NetworkX logo Image source networkxorg

NetworkX is a Python package for creating, manipulating, and studying complex networks’ structure, dynamics, and functions.

NetworkX provides:

  • tools for studying the structure and dynamics of social, biological, and infrastructure networks;
  • a standard programming interface and graph implementation suitable for a wide range of applications;
  • a rapid development environment for collaborative, multidisciplinary projects;
  • an interface to existing numerical algorithms and code written in C, C++, and FORTRAN; and
  • the ability to work with large nonstandard data sets without difficulty.

You can use NetworkX to load and save networks in standard and nonstandard data formats, generate many different types of random and classic networks, analyze network structure, build network models, design new network algorithms, draw networks, and much more.

 

What are the prerequisites for the NetworkX Library?

You will need Graphviz and PyGraphviz for some advanced graph and network layout and visualizations. We recommend you to install them with conda or Anaconda Distribution, instead of regular Python, due to some complexities and conflicts you will face if you install them in regular Python distribution.

Prerequisites 1: Graphviz

You can easily install Graphviz with this conda install command:

Excerpt of conda install progress for graphviz:

What Is The Best Graphs And Network Visualization Tool On Windows A screengrab of installing GraphViz via Anaconda

Prerequisites 2: PyGraphviz

You can easily install PyGraphviz with this conda install command:

Excerpt of conda install progress for pygraphviz:

02 condainstall pygraphviz 8942652

 

How do I get and install the NetworkX Library?

You can easily install NetworkX with pip:

Or, you can install it with conda install to avoid complexities and conflicts between required libraries, as we tell you in the previous section:

 

How do I install Python4Delphi?

Follow the Python4Delphi installation instructions mentioned here. Alternatively, you can follow the simple instructions in Jim McKeeth‘s “Getting Started With Python4Delphi” video:

 

How do I build a Delphi GUI for the NetworkX graphs and network visualization library?

Our project’s user interface structure is as follows:

What Is The Best Graphs And Network Visualization Tool On Windows Example of NetworkX4D in the RAD Studio IDE
User interface structure for our NetworkX4D project

Here is the list of Components used in the NetworkX4D demo app:

  1. TPythonEngine
  2. TPythonModule
  3. TPythonType
  4. TPythonVersions
  5. TPythonGUIInputOutput
  6. TForm
  7. TMemo
  8. TOpenDialog
  9. TSaveDialog
  10. TSplitter
  11. TImage
  12. TPanel
  13. TLabel
  14. TComboBox
  15. TButton

Navigate to the UnitNetworkX4D.pas, and add the following line to the FormCreate, to load our basic networkxApp.py:

What Is The Best Graphs And Network Visualization Tool On Windows Using the UnitNetworkX4D code
You can seamlessly load the NetworkX app python file inside the UnitNetworkX4Dpas file

And make sure that the networkxApp.py is in the same directory as our NetworkX4D.exe or inside your Delphi project folder.

You can change the “networkxApp.py” with any NetworkX script you want, or you can load your NetworkX scripts at runtime, by clicking the “Load script…” like we will show you in the next Demo Sections.

 

How to create graphs and network visualization using NetworkX in a Delphi app?

This post will walk you through the process of integrating Python NetworkX into a Delphi-created Windows app. As a bonus, we will show you five use cases.

Highly recommended practice:

1. This GUI was created by modifying Python4Delphi Demo34, which allows us to change the Python version in the runtime (this will save you from the seemingly complicated dll issues).

2. Add “Jpeg” to the top of our UnitNetworkX4D.pas code’s Uses-list. We must do so because Delphi will not understand the JPG format otherwise. It should work with this change.

After that, the above modification should look like this:

What Is The Best Graphs And Network Visualization Tool On Windows Making sure you are using the JPeg library
Add Jpeg to Your Uses List

We can also load JPG images into our TImage.

3. Set up the following paths in your Environment Variable:

Set up the following paths if you’re using the Anaconda Python distribution:

4. To show plotting results, you must use Matplotlib outside of the “normal” command-line process. To do this, add the following lines to all of your Python code:

We strongly advise you to name your image output as “networkxPlot.jpg” in order for it to load automatically on your GUI after you click the “Show plot” button.

5. Set MaskFPUExceptions(True); to the UnitNetworkX4D.pas file to avoid Delphi raising an exception when floating operations result in +/- infinity (e.g. division by zero), which is caused by incompatibility with a number of Python libraries such as NumPy, SciPy, pandas, and Matplotlib.

One of the best features of this NetworkX4D Demo GUI is that you can choose your preferred Python version, which is interchangeable.

What Is The Best Graphs And Network Visualization Tool On Windows Conda screen
This GUI allows you to select any Python version installed on your system And then click the Execute button to run the Basic Example

6. As we’ve already tested this GUI for regular Python and Anaconda Python distribution, this NetworkX4D GUI works better for Anaconda Python distribution. The required Graphviz and PyGraphviz packages would throw some complicated errors and conflicts when we try to install them on the  regular Python distribution

7. Then, click the “Execute” button to run the very basic example of NetworkX to draw a simple graph (the Python code is already called inside the UnitNetworkX4D.pas file), and then click the “Show plot” button to display the figure. Here is the output:

What Is The Best Graphs And Network Visualization Tool On Windows A NetworkX4D network graph
NetworkXD Most Basic Example

Example 1 of graphs and network visualization: Simple graph

This example is similar to the most basic NetworkXD we have mentioned earlier. This example would draw a simple graph with a manual layout.

Here is the default example embedded on the NetworkX4D GUI:

demWhat Is The Best Graphs And Network Visualization Tool On Windows Another network graph
The most basic NetworkX4D example

This basic/default example basically loads and executes the embedded networkxApp.py script.

Example 2 of graphs and network visualization: Degree analysis

This example demonstrates how to visualize the degree distribution of nodes using two common techniques: A degree-rank plot and a degree histogram.

In this example, a random Graph with 100 nodes is generated. The degree of each node is calculated, and a figure is generated that shows three things: 

1. The connected component subgraph

2. the Graph’s degree-rank plot, and

3. The degree histogram

To try this example, load the demo02_degreeAnalysis.py at runtime by clicking the “Load script…” button, and then “Execute”. Here is the output:

demWhat Is The Best Graphs And Network Visualization Tool On Windows A degree analysis example
Use NetworkX4D to perform degree analysis

Example 3 of graphs and network visualization: Employ the PyGraphviz layout – Atlas of all connected graphs with up to 6 nodes

In the third example, we will visualize the atlas of all connected graphs with up to 6 nodes.

This example uses Graphviz via PyGraphviz.

The image should show 142 graphs. We don’t plot the empty graph or the single node graph (142 is the sum of values 2 to n=6 in sequence. Source: oeis.org/A001349).

dWhat Is The Best Graphs And Network Visualization Tool On Windows An atlas graph
Use NetworkX4D to draw an atlas of all connected graphs with up to n nodes

Load the demo03_atlasOfAllConnectedGraphsUpTo6Nodes.py at runtime by clicking the “Load script…” button, and then “Execute”, to get the output as shown above.

Example 4 of graphs and network visualization: Employ the Graphviz and PyGraphviz layout – Draw a circular tree

A circular tree, radial tree, or radial map is a method of displaying a tree structure (e.g., a tree data structure) in a radial fashion (expands outwards).

It is one of several methods for visually displaying a tree, with examples dating back to the early 20th century. Circular tree is a type of information graphic in use.

What Is The Best Graphs And Network Visualization Tool On Windows A circular tree
Use NetworkX4D to draw a circular tree

Load the demo04_circularTree.py at runtime by clicking the “Load script…” button, and then “Execute”, to get the output as shown above.

Example 5 of graphs and network visualization: Solve a real AI problem – This is how to solve the traveling salesman problem

The traveling salesman problem is a very popular technology interview question because it requires the person answering it to understand some subtle difficulties that occur in real-life real-world situations. In this example, we will show how to use NetworkX4D to solve the traveling salesman problem. It will draw the solution to the traveling salesman problem and print out the route taken by the traveler.

The traveling salesman problem (TSP) is an algorithmic problem in which the goal is to find the shortest path between a set of points and locations that must be visited. The cities that a salesperson might visit are represented by the points in the problem statement. The salesman’s goal is to keep travel expenses and distance traveled to a minimum.

TSP, which focuses on optimization, is frequently used in computer science to find the most efficient route for data to travel between different nodes.

What Is The Best Graphs And Network Visualization Tool On Windows How to solve the traveling salesman problem
Illustration of the solution of a traveling salesman problem The black line shows the shortest possible loop that connects every red dot Image source Xypron Wikipedia

The function used to generate the solution is christofides, which calculates the route of the nodes that the traveler must take to minimize the total cost given a set of nodes.

The Christofides algorithm, also known as the Christofides-Serdyukov algorithm, is a method for finding approximate solutions to the traveling salesman problem when the distances form a metric space (they are symmetric and obey the triangle inequality). It is named after Nicos Christofides and Anatoliy I. Serdyukov, who discovered it independently in 1976. It is an approximation algorithm that ensures that its solutions are within 3/2 of the optimal solution length.

Here is the result of our demonstration:

What Is The Best Graphs And Network Visualization Tool On Windows A demonstration of how to solve the traveling salesman problem
Use NetworkX4D to Solve the Traveling Salesman Problem

Load the demo05_travelingSalesmanProblem.py at runtime by clicking the “Load script…” button, and then “Execute”, to get the output as shown above. The output not only draws the path taken by the salesman, but also prints out the route of the traveler.

Such a powerful graph and network visualization tool, right? 

Visit this repository for complete source code.

 

Are you ready to try these NetworkX4D graphs and network visualization demos?

Congratulations, now you have learned a lot about NetworkX: A powerful graph and network visualization library, and how you can use Delphi to create a simple yet powerful GUI for it! We have learned a few examples and use cases, and now you can explore them to boost your productivity in creating your own graph and network visualization apps.

For a more Pythonic point of view, you can refer to this article:

and if you are looking for other powerful data visualization libraries, please read this article:

Download a free trial of RAD Studio Delphi today and try out these examples for yourself.

References & further readings

Books & papers

Bratanic, T. (2021). Graphs and network science: An introduction. Manning Publications.

Goodrich, M. T., & Tamassia, R. (2015). Algorithm design and applications (p. 349). Hoboken: Wiley.

Gross, J. L., & Yellen, J. (2004). Handbook of graph theory. CRC Press. Boca Raton.

J. J. Sylvester (February 7, 1878). Chemistry and algebra. Nature, 17: 284

Trudeau, R. J. (2013). Introduction to graph theory. Courier Corporation.

Links

blog.routific.com/travelling-salesman-problem

en.wikipedia.org/wiki/Christofides_algorithm

en.wikipedia.org/wiki/Travelling_salesman_problem

networkx.org/documentation/stable/auto_examples/

oeis.org/A001349

spicynodes.org/reference-background.html

techtarget.com/whatis/definition/traveling-salesman-problem

visualcomplexity.com/vc/project.cfm?id=26


Why not try out these graphs and network visualization examples for yourself? Download a free trial of RAD Studio Delphi and start coding today!


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial   Upgrade Today

   Free Delphi Community Edition   Free C++Builder Community Edition

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

IN THE ARTICLES