The making of the lollipop chart, in R and Python

AE 16

R version

library(tidyverse)

df_r <- read_csv("data/mean-area-decade.csv")

# add code here

Python version

import polars as pl
from plotnine import ggplot, aes, geom_point, geom_segment, labs, theme, theme_minimal

df_py = pl.read_csv("data/mean-area-decade.csv")

# add code here