This is Dr. Ignaz Semmelweis, a Hungarian physician born in 1818 and active at the Vienna General Hospital. If Dr. Semmelweis looks troubled it’s probably because he’s thinking about childbed fever: A deadly disease affecting women that just have given birth. He is thinking about it because in the early 1840s at the Vienna General Hospital as many as 10% of the women giving birth die from it. He is thinking about it because he knows the cause of childbed fever: It’s the contaminated hands of the doctors delivering the babies. And they won’t listen to him and wash their hands!
In this notebook, we’re going to reanalyze the data that made Semmelweis discover the importance of handwashing. Let’s start by looking at the data that made Semmelweis realize that something was wrong with the procedures at Vienna General Hospital.
Code
# Load in the tidyverse packagelibrary(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ readr 2.1.5
✔ forcats 1.0.0 ✔ stringr 1.5.1
✔ ggplot2 3.5.1 ✔ tibble 3.2.1
✔ lubridate 1.9.3 ✔ tidyr 1.3.1
✔ purrr 1.0.2
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
Code
# Read datasets/yearly_deaths_by_clinic.csv into yearlyyearly <-read_csv("yearly_deaths_by_clinic.csv")
Rows: 12 Columns: 4
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (1): clinic
dbl (3): year, births, deaths
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
The table above shows the number of women giving birth at the two clinics at the Vienna General Hospital for the years 1841 to 1846. You’ll notice that giving birth was very dangerous; an alarming number of women died as the result of childbirth, most of them from childbed fever.
We see this more clearly if we look at the proportion of deaths out of the number of women giving birth.
Code
# Adding a new column to yearly with proportion of deaths per no. birthsyearly <- yearly %>%mutate(proportion_deaths = deaths/births)# Print out yearlyyearly
If we now plot the proportion of deaths at both clinic 1 and clinic 2 we’ll see a curious pattern…
Code
# Setting the size of plots in this notebookoptions(repr.plot.width =7, repr.plot.height =4)# Plot yearly proportion of deaths at the two clinicsggplot(yearly, aes(x = year, y = proportion_deaths, col = clinic)) +geom_line()
4. The handwashing begins
Why is the proportion of deaths constantly so much higher in Clinic 1? Semmelweis saw the same pattern and was puzzled and distressed. The only difference between the clinics was that many medical students served at Clinic 1, while mostly midwife students served at Clinic 2. While the midwives only tended to the women giving birth, the medical students also spent time in the autopsy rooms examining corpses.
Semmelweis started to suspect that something on the corpses, spread from the hands of the medical students, caused childbed fever. So in a desperate attempt to stop the high mortality rates, he decreed: Wash your hands! This was an unorthodox and controversial request, nobody in Vienna knew about bacteria at this point in time.
Let’s load in monthly data from Clinic 1 to see if the handwashing had any effect.
Code
# Read datasets/monthly_deaths.csv into monthlymonthly <-read_csv("monthly_deaths.csv")
Rows: 98 Columns: 3
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
dbl (2): births, deaths
date (1): date
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
Code
# Adding a new column with proportion of deaths per no. birthsmonthly <- monthly %>%mutate(proportion_deaths = deaths/births)# Print out the first rows in monthlyhead(monthly)
With the data loaded we can now look at the proportion of deaths over time. In the plot below we haven’t marked where obligatory handwashing started, but it reduced the proportion of deaths to such a degree that you should be able to spot it!
Code
ggplot(monthly, aes(date, proportion_deaths)) +geom_line() +labs(x ="Year", y ="Proportion Deaths")
6. The effect of handwashing highlighted
Starting from the summer of 1847 the proportion of deaths is drastically reduced and, yes, this was when Semmelweis made handwashing obligatory.
The effect of handwashing is made even more clear if we highlight this in the graph.
Code
# From this date handwashing was made mandatoryhandwashing_start =as.Date('1847-06-01')# Add a TRUE/FALSE to monthly called handwashing_startedmonthly <- monthly %>%mutate(handwashing_started = date >= handwashing_start)# Plot monthly proportion of deaths before and after handwashingggplot(monthly, aes(x = date, y = proportion_deaths, color = handwashing_started)) +geom_line()
7. More handwashing, fewer deaths?
Again, the graph shows that handwashing had a huge effect. How much did it reduce the monthly proportion of deaths on average?
Code
# Calculating the mean proportion of deaths # before and after handwashing.monthly_summary <- monthly %>%group_by(handwashing_started) %>%summarise(mean_proportion_deaths =mean(proportion_deaths))# Printing out the summary.monthly_summary
8. A statistical analysis of Semmelweis handwashing data
It reduced the proportion of deaths by around 8 percentage points! From 10% on average before handwashing to just 2% when handwashing was enforced (which is still a high number by modern standards). To get a feeling for the uncertainty around how much handwashing reduces mortalities we could look at a confidence interval (here calculated using a t-test).
Code
# Calculating a 95% Confidence intrerval using t.test test_result <-t.test( proportion_deaths ~ handwashing_started, data = monthly)test_result
Welch Two Sample t-test
data: proportion_deaths by handwashing_started
t = 9.6101, df = 92.435, p-value = 1.445e-15
alternative hypothesis: true difference in means between group FALSE and group TRUE is not equal to 0
95 percent confidence interval:
0.06660662 0.10130659
sample estimates:
mean in group FALSE mean in group TRUE
0.10504998 0.02109338
9. The fate of Dr. Semmelweis
That the doctors didn’t wash their hands increased the proportion of deaths by between 6.7 and 10 percentage points, according to a 95% confidence interval. All in all, it would seem that Semmelweis had solid evidence that handwashing was a simple but highly effective procedure that could save many lives.
The tragedy is that, despite the evidence, Semmelweis’ theory — that childbed fever was caused by some “substance” (what we today know as bacteria) from autopsy room corpses — was ridiculed by contemporary scientists. The medical community largely rejected his discovery and in 1849 he was forced to leave the Vienna General Hospital for good.
One reason for this was that statistics and statistical arguments were uncommon in medical science in the 1800s. Semmelweis only published his data as long tables of raw data, but he didn’t show any graphs nor confidence intervals. If he would have had access to the analysis we’ve just put together he might have been more successful in getting the Viennese doctors to wash their hands.
Code
# The data Semmelweis collected points to that:doctors_should_wash_their_hands <-TRUE