[ad_1]
Every time I want inspiration for efficient visualizations, I browse The Economist, the Visual Capitalist, or The Washington Post. Throughout certainly one of these forays, I ran throughout an attention-grabbing infographic — just like the one proven above — that plotted the age of every member of the US Congress in opposition to their generational cohort.
My first impression was that this was a horizontal bar chart, however nearer inspection revealed that every bar was composed of a number of markers, making it a scatter plot. Every marker represented one member of Congress.
On this Fast Success Information Science mission, we’ll recreate this engaging chart utilizing Python, pandas, and seaborn. Alongside the best way, we’ll unlock a cornucopia of marker sorts it’s possible you’ll not know exist.
As a result of the US has Age of Candidacy legal guidelines, the birthdays of members of Congress are a part of the general public document. You’ll find them in a number of locations, together with the Biographical Directory of the United States Congress and Wikipedia.
For comfort, I’ve already compiled a CSV file of the names of the present members of Congress, together with their birthdays, department of presidency, and get together, and saved it on this Gist.
The next code was written in Jupyter Lab and is described by cell.
Importing Libraries
from collections import defaultdict # For counting members by age.
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import patches # For drawing bins on the plot.
import pandas as pd
import seaborn as sns
Assigning Constants for the Generational Information
We’ll annotate the plot in order that generational cohorts, similar to Child Boomers and Gen X, are highlighted. The next code calculates the present age spans for every cohort and consists of lists for technology names and spotlight colours. As a result of we need to deal with these lists as constants, we’ll capitalize the names and use an underscore as a prefix.
# Put together generational knowledge for plotting as bins on chart:
CURRENT_YEAR = 2023…
[ad_2]
Source link