A Visual History of Nobel Prize Winners

Mustafa Germec, PhD
8 min readJul 14, 2023

Mustafa Germeç, PhD

One of DataCamp Projects

1. The most Nobel of Prizes

The Nobel Prize is perhaps the world’s most well known scientific award. Except for the honor, prestige and substantial prize money, the recipient also gets a gold medal showing Alfred Nobel (1833–1896) who established the prize. Every year it’s given to scientists and scholars in the categories chemistry, literature, physics, physiology or medicine, economics, and peace. The first Nobel Prize was handed out in 1901, and at that time the Prize was very Eurocentric and male-focused, but nowadays, it’s not biased in any way whatsoever. Surely. Right?

Well, we’re going to find out! The Nobel Foundation has made a dataset available of all prize winners from the start of the prize, in 1901, to 2016. Let’s load it in and take a look.

# Loading in required libraries
import pandas as pd
import seaborn as sns
import numpy as np
import datetime as dt
# Reading in the Nobel Prize data
nobel = pd.read_csv('/kaggle/input/nobel-laureates/archive.csv')
nobel.columns = [col.lower() for col in nobel.columns]
nobel.columns = ['year', 'category', 'prize', 'motivation', 'prize_share', 'laureate_id',
'laureate_type', 'full_name', 'birth_date', 'birth_city',
'birth_country', 'sex', 'organization_name', 'organization_city',
'organization_country', 'death_date', 'death_city', 'death_country']
# Taking a look at the first several winners
nobel.head(n=6)

2. So, who gets the Nobel Prize?

Just looking at the first couple of prize winners, or Nobel laureates as they are also called, we already see a celebrity: Wilhelm Conrad Röntgen, the guy who discovered X-rays. And actually, we see that all the winners in 1901 were guys that came from Europe. But that was back in 1901, looking at all winners in the dataset, from 1901 to 2016, which sex and which country is the most commonly represented?

(For country, we will use the birth_country of the winner, as the organization_country is NaN for all shared Nobel Prizes.)

# Display the number of (possibly shared) Nobel Prizes handed out between 1901 and 2016
display(nobel['prize'].value_counts())
# Display the number of prizes won by male and female recipients.
display(nobel['sex'].value_counts())
# Display the number of prizes won by the top 10 nationalities.
nobel['birth_country'].value_counts().head(10)
The Nobel Prize in Physiology or Medicine 2009    5
The Nobel Prize in Physics 2005 5
The Nobel Prize in Physics 2011 5
The Nobel Prize in Chemistry 2008 5
The Nobel Prize in Physiology or Medicine 2013 5
..
The Nobel Prize in Literature 1967 1
The Nobel Prize in Physics 1966 1
The Nobel Prize in Chemistry 1966 1
The Nobel Prize in Physics 1921 1
The Nobel Prize in Chemistry 1901 1
Name: prize, Length: 579, dtype: int64
Male      893
Female 50
Name: sex, dtype: int64
United States of America    276
United Kingdom 88
Germany 70
France 53
Sweden 30
Japan 29
Russia 20
Netherlands 19
Canada 18
Italy 18
Name: birth_country, dtype: int64

3. USA dominance

Not so surprising, perhaps: the most common Nobel laureate between 1901 and 2016 was a man born in the United States of America. But in 1901 all the winners were European. When did the USA start to dominate the Nobel Prize charts?

# Calculating the proportion of USA born winners per decade
nobel['usa_born_winner'] = nobel['birth_country'] == 'United States of America'
nobel['decade'] = (np.floor(nobel['year']/10) * 10).astype('int64')
prop_usa_winners = nobel.groupby('decade', as_index=False)['usa_born_winner'].mean()
# Display the proportions of USA born winners per decade
display(prop_usa_winners)

4. USA dominance, visualized

A table is OK, but to see when the USA started to dominate the Nobel charts we need a plot!

# Setting the plotting theme
sns.set()
# and setting the size of all plots.
import matplotlib.pyplot as plt
plt.rcParams['figure.figsize'] = [11, 7]
# Plotting USA born winners
ax = sns.lineplot(x='decade', y='usa_born_winner', data=prop_usa_winners)
# Adding %-formatting to the y-axis
from matplotlib.ticker import PercentFormatter
ax.yaxis.set_major_formatter(PercentFormatter(xmax=1))

5. What is the gender of a typical Nobel Prize winner?

So the USA became the dominating winner of the Nobel Prize first in the 1930s and had kept the leading position ever since. But one group that was in the lead from the start, and never seems to let go, are men. Maybe it shouldn’t come as a shock that there is some imbalance between how many male and female prize winners there are, but how significant is this imbalance? And is it better or worse within specific prize categories like physics, medicine, literature, etc.?

# Calculating the proportion of female laureates per decade
nobel['female_winner'] = nobel['sex'] == 'Female'
prop_female_winners = nobel.groupby(['decade', 'category'], as_index=False)['female_winner'].mean()
# Plotting USA born winners with % winners on the y-axis
# Setting the plotting theme
sns.set()
# and setting the size of all plots.
import matplotlib.pyplot as plt
plt.rcParams['figure.figsize'] = [11, 7]
# Plotting USA born winners
ax = sns.lineplot(x='decade', y='female_winner', data=prop_female_winners, hue='category')
# Adding %-formatting to the y-axis
from matplotlib.ticker import PercentFormatter
ax.yaxis.set_major_formatter(PercentFormatter(xmax=1))

6. The first woman to win the Nobel Prize

The plot above is a bit messy as the lines are over plotting. But it does show some interesting trends and patterns. Overall the imbalance is pretty large with physics, economics, and chemistry having the largest imbalance. Medicine has a somewhat positive trend, and since the 1990s the literature prize is also now more balanced. The big outlier is the peace prize during the 2010s, but keep in mind that this just covers the years 2010 to 2016.

Given this imbalance, who was the first woman to receive a Nobel Prize? And in what category?

# Picking out the first woman to win a Nobel Prize
nobel_female = nobel[nobel['sex'] == 'Female']
nobel_female.nsmallest(1, 'laureate_id', keep='first')

7. Repeat laureates

For most scientists/writers/activists, a Nobel Prize would be the crowning achievement of a long career. But for some people, one is just not enough, and few have gotten it more than once. Who are these lucky few? (Having won no Nobel Prize myself, I’ll assume it’s just about luck.)

# Selecting the laureates that have received 2 or more prizes.
nobel.groupby('full_name').filter(lambda x: len(x) >= 2)

8. How old are you when you get the prize?

The list of repeat winners contains some illustrious names! We again meet Marie Curie, who got the prize in physics for discovering radiation and in chemistry for isolating radium and polonium. John Bardeen got it twice in physics for transistors and superconductivity, Frederick Sanger got it twice in chemistry, and Linus Carl Pauling got it first in chemistry and later in peace for his work in promoting nuclear disarmament. We also learn that organizations also get the prize, as both the Red Cross and the UNHCR have gotten it twice.

But how old are you generally when you get the prize?

# Converting birth_date from String to datetime
nobel['birth_date'] = pd.to_datetime(nobel['birth_date'], errors='coerce')
# Calculating the age of Nobel Prize winners
nobel['age'] = nobel['year'] - nobel['birth_date'].dt.year
# Plotting the age of Nobel Prize winners
sns.lmplot(x='year', y='age', data=nobel, lowess=True,
aspect=2, line_kws={'color' : 'black'})

9. Age differences between prize categories

The plot above shows us a lot! We see that people use to be around 55 when they received the price, but nowadays, the average is closer to 65. But there is a large spread in the laureates’ ages, and while most are 50+, some are very young.

We also see that the density of points is much higher nowadays than in the early 1900s — nowadays many more of the prizes are shared, and so there are many more winners. We also see that there was a disruption in awarded prizes around the Second World War (1939–1945).

Let’s look at age trends within different prize categories.

# Same plot as above, but separate plots for each type of Nobel Prize
# Same plot as above, but separate plots for each type of Nobel Prize
sns.lmplot(x='year', y='age', row='category', data=nobel, lowess=True,
aspect=2, line_kws={'color' : 'black'})

10. Oldest and youngest winners

More plots with lots of exciting stuff going on! We see that both winners of the chemistry, medicine, and physics prize have gotten older over time. The trend is strongest for physics: the average age used to be below 50, and now it’s almost 70. Literature and economics are more stable. We also see that economics is a newer category. But peace shows an opposite trend where winners are getting younger!

In the peace category, we also a winner around 2010 that seems exceptionally young. This begs the questions, who are the oldest and youngest people ever to have won a Nobel Prize?

# The oldest winner of a Nobel Prize as of 2016
display(nobel.nlargest(1, 'age'))
# The youngest winner of a Nobel Prize as of 2016
nobel.nsmallest(1, 'age')

11. You get a prize!

Hey! You get a prize for making it to the very end of this notebook! It might not be a Nobel Prize, but I made it myself in paint, so it should count for something. But don’t despair, Leonid Hurwicz was 90 years old when he got his prize, so it might not be too late for you. Who knows.

Before you leave, what was again the name of the youngest winner ever, who in 2014 got the prize for “[her] struggle against the suppression of children and young people and for the right of all children to education”?

# The name of the youngest winner of the Nobel Prize as of 2016
youngest_winner = nobel.sort_values('age')
youngest_winner = youngest_winner.iloc[0]['full_name']
youngest_winner
'Malala Yousafzai'

See you in the next writing up…

Enjoy!

Happy every day, coding, and learning!

WordPress | Kaggle | LinkedIn | GitHub | ResearchGate | Google Academic

--

--

Mustafa Germec, PhD

I am interested in bioprocessing, data science, machine learning, natural language process (NLP), time series, and structured query language (SQL).