Plotting with Pygal

python pygal

An introduction to Python’s Pygal plotting library

In order to brush up on my Python skills, I recently completed the Introduction to Python Scripting Specialization on Coursera from Rice University. Four brief courses introduce Python Programming Essentials, Data Representations, Data Analysis and Data Visualization.

The specialization requires writing short Python scripts of a few specified functions, each assessed by a machine grader. The final projects in the Data Visualization course introduce the Pygal plotting library.

One of these projects requires unifying World Bank GDP data with Pygal country codes in order to construct a world choropleth for a given year. Below is one example plot output. Although the built-in tooltips are nice (not in the image below), the default color palette makes it difficult to easily distinguish differences in GDP values, even after converting to a log scale.

The penultimate project required constructing line plots of World Bank GDP data for a given selection of countries, again using the Pygal plotting library.

My scripts for producing these plots can be found in the GitHub repo.

While these scripts recreated the required visualizations, they should not be considered publication-ready. In the map for instance, the legend categorizes the differences between countries having GDP data and those missing, but there is no explanation of what the shades of red represent. The “Missing from World Bank Data” label is also cut-off. Moreover, the tooltips give GDP values with too many decimal points but no sense of units. It also does not utilize space well. The legend could likely fit in the bottom left corner closer to South America, and there could be less space between the title and the map itself.

The line plot also suffers from poor formatting of numeric values in the tooltip and y-axis. Placing the legend on the right hand side (ggplot2’s default) would also make better use of space.

Reuse

Text and figures are licensed under Creative Commons Attribution CC BY-NC 4.0. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".