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

How To Make Powerful Data Visualizations With Matplotlib

How To Make Powerful Data Visualizations With Matplotlib

Did you know it’s easy to make use of some truly excellent Python libraries to super-charge your Delphi app development on Windows? Adding Python to your toolbox of Delphi code can enhance your app development, bringing in new capabilities which help you provide innovative and powerful solutions to your app’s users, which combine the best of Python with the supreme low-code and unparalleled power of native Windows development you get with Delphi.

Are you looking for how to build a GUI for powerful and visually stunning data visualizations? You can build publication-quality figures with Matplotlib on Delphi. Matplotlib can be used in Python scripts, the Python and IPython shell, web application servers, and various graphical user interface toolkits (including Delphi!). This post will show you how to build a Delphi GUI app, dedicated to the Matplotlib library.

Watch this video by Jim McKeeth, as a comprehensive introduction about why you can love both Delphi and Python at the same time:

What is the Matplotlib Library?

How To Make Powerful Data Visualizations With Matplotlib The Matplotlib logo

Matplotlib is a comprehensive Python library for creating static, animated, and interactive visualizations. Matplotlib produces publication-quality figures in a variety of hardcopy formats and interactive environments across platforms.

Matplotlib makes easy things easy and hard things possible.

  • Create publication-quality plots.
  • Make interactive figures that can zoom, pan, update.
  • Customize visual style and layout.
  • Export to many file formats.
  • Embedded in JupyterLab and Graphical User Interfaces.
  • Use a rich array of third-party packages built on Matplotlib.

How do I get the Matplotlib library?

You can easily install Matplotlib with pip:

Or, you can choose conda install, to avoid complexities, as Anaconda is known as the most trusted distribution for Data Science related tasks:

How do I build a Delphi GUI for the Matplotlib library?

The following is the user interface structure for our project:

How To Make Powerful Data Visualizations With Matplotlib The Matplotlib example in the Delphi IDE
User Interface Structure for our Matplotlib4D Project

Here is the list of Components used in the Matplotlib4D 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 UnitMatplotlib4D.pas, and add the following line to the FormCreate, to load our basic matplotlibApp.py:

How To Make Powerful Data Visualizations With Matplotlib LOading the library in the IDE
You can Seamlessly Load the Matplotlib App Python File Inside the UnitMatplotlib4Dpas File

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

How to visualize data using Matplotlib on the Delphi app?

Highly recommended practice: 

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

2. Add “Jpeg” to the Uses-list at the top of our UnitMatplotlib4D.pas code. We have to do that, because otherwise, Delphi can not understand the JPG format. With this correction, it should work.

After that, the above change should look similar to this:

How To Make Powerful Data Visualizations With Matplotlib Importing it into the IDE
Import Jpeg to Your Uses list

And we can load JPG images into our TImage.

3. Set up these paths to your Environment Variable:

4. Creating a GUI for Matplotlib means that you will use Matplotlib outside the “normal” command-line process. You need to add these lines to all your Python code:

We strongly recommend you name your image output as matplotlibPlot.jpg, to enable it to load automatically on your GUI after clicking the ”Show plot” button.

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

One of the best parts of this Matplotlib4D Demo GUI is you can choose the Python version you prefer, and it can be interchangeable.

How To Make Powerful Data Visualizations With Matplotlib The demo screen
This GUI Allows You to Choose any Python Version Installed on Your System And Run the Basic Example by Clicking the Execute button

As we’ve already tested this GUI for regular Python and Anaconda Python, this Matplotlib4D GUI works best for both Python versions.

Next, click the “Execute” button to run the very basic example to plot heatmap with annotation (the Python code is already called inside the UnitMatplotlib4D.pas file), and click the “Show plot” button to show the figure. Here is the output:

How To Make Powerful Data Visualizations With Matplotlib The running example
Matplotlib4D Most Basic Example

 

How to learn the fundamentals of data visualization with Matplotlib on the Delphi app?

Examples of implementations:

1. Heatmap: Annotated heatmap

Context: We often want to show data that depends on two independent variables, or visualize the strength of correlations between two variables as a color-coded image plot. This data visualization technique is often referred to as a heatmap. If the data is categorical, this would be called a categorical heatmap.

The following examples show how to create a heatmap with annotations, which help us to read the quantity on top of the color-coded plot.

Here is the default example embedded on the Matplotlib4D GUI:

How To Make Powerful Data Visualizations With Matplotlib An image of an annotated heatmap
Use Matplotlib4D to Create an Annotated Heatmap

You can download the script here.

2. Barchart: Horizontal bar chart distribution 

Context: Stacked bar charts can be used to visualize discrete distributions. Stacked bar charts are commonly used to visualize distributions, segments, or survey results.

This example visualizes the result of a survey in which people could rate their agreement to questions on a five-element scale.

Load the demo02_horizontalBarchartDistribution.py at runtime by clicking the “Load script…” button, and then “Execute”. Here is the output:

How To Make Powerful Data Visualizations With Matplotlib A screenshot of a horizontal barchart
Use Matplotlib4D to Create a Horizontal Bar Chart Distribution

3. Subplot & Line Chart: Subplots showing damped vs undamped oscillation 

Context: Sometimes we want to compare two or more plots head-to-head, to visualize the difference between two conditions. For example, in Physics, we want to plot the damped vs undamped oscillation.

Load the demo03_subplot.py at runtime by clicking the “Load script…” button, and then “Execute”. Here is the output:

How To Make Powerful Data Visualizations With Matplotlib A subplot
Use Matplotlib4D to Create a Subplot

4. Scatterplot with varying marker colors and sizes 

Context: Visualize relations between two variables (usually to find trends and the tightness of the relations), with other additional variables visualized using variations of marker’s colors and sizes.

Load the demo04_scatterplotWithVaryingMarkerColorsAndSizes.py at runtime by clicking the “Load script…” button, and then “Execute”. Here is the output:

How To Make Powerful Data Visualizations With Matplotlib A scatterplot
Use Matplotlib4D to Create a More Advanced Scatter Plot

5. Anatomy of a figure

Context: To get the most out of Matplotlib, you need to know all the anatomy of a figure or a plot. In this example, we will learn them all.

Load the demo05_anatomyOfAFigure.py at runtime by clicking the “Load script…” button, and then “Execute”. Here is the output:

How To Make Powerful Data Visualizations With Matplotlib The anatomy of a figure
Use Matplotlib4D to Learn about the Anatomy of a Figure

Such a powerful data visualization library, right?

Are you ready to try these Matplotlib for Delphi demos?

Congratulations, now you have learned a lot about Matplotlib: A powerful data visualization library, and how you can use Delphi to create a simple yet powerful GUI for it! We have learned the fundamentals of data visualization examples, and now you can explore them to boost your productivity in creating your own data 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.


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