I opted to leave out the plot for that data because oh boy so many people, so I hope everyone will be happy with the table.
It was artisanally crafted as a gift to The Incomparable panelists and fans <3
A Searchable Table of All The nice People*
* All the nice people and Philip Mozolak
Here’s a searchable and sortable list of all the episodes released in 2024 (UTC, no freedom timestamps, sorry). There are multiple rows per episode, because each person gets their own row, which should make it a little easier to find out which person aprticipated in which episode. Because manually searching through https://www.theincomparable.com/person/ would be almost like work.
incomparable_episodes |>filter(year == current_year) |>mutate(date =round_date(date, unit ="week")) |>count(date) |>ggplot(aes(x = date, y = n)) +geom_col() +scale_x_date(date_breaks ="1 month",date_labels ="%B" ) +labs(title = glue::glue("The Incomparable Network — {current_year}"),subtitle ="Shows per week",x ="",y ="# of Episodes per Week",caption = caption ) +theme(axis.text.x =element_text(angle =90, vjust =0.5, hjust =1))
Yearly Episode Output
All in all, The Incomparable published 3.62686^{5} minutes of content, or 36 weeks, which are numbers that exists as a concept in your head but not in reality.
Code
incomparable_episodes |>filter(year >=2011) |>count(year) |>ggplot(aes(x =factor(year), y = n)) +geom_col() +labs(title ="The Incomparable Network",subtitle ="Shows per year",x ="",y ="# of Episodes per Year",caption = caption )