Home United States USA — software Creating a Heat Map of Ratios With Seaborn Creating a Heat Map...

Creating a Heat Map of Ratios With Seaborn Creating a Heat Map of Ratios With Seaborn

547
0
SHARE

Seaborn can help you create heat maps to visualize data. See how to use it with Python and Pandas to visualize the ratio of males to females in the population.
In this post, we will see how to create a heat map with Seaborn. We’ll use a dataset from the Wittgenstein Centre Data Explorer. The data extracted is also reported here in CSV format. It contains the ratio of males to females in the population by age for 1970 to 2015 (data reported after this period is projected) . First, we import the data using Pandas:
Here, take care of the age coding and isolate the data for the United Kingdom and Northern Ireland. Now, we can rearrange the data to see ratio per year and age using a pivot table, we can then visualize the result using the heatmap function in Seaborn:
In each year, we see that the ratio was above 1 (in favor of males) for young ages. It then becomes lower than 1 during adulthood and keeps lowering with age. It also seems that with time, the ratio decreases more slowly. For example, we see that the age group 70-74 had a ratio of 0.63 in 1970, while the ratio in 2015 was 0.9.

Continue reading...