ratings | R Documentation |
Data on TV viewership and ratings for the first 24 seasons of the UK TV show "I'm A Celebrity, Get Me Out Of Here". Viewership and rankings data is linked on the season wikipedia pages but comes from BARB ratings for each week.
ratings
ratings
A data frame with 458 rows and 6 columns:
(numeric) Season of the show
(numeric) Episode of the season
(Date) Date the episode was aired
(numeric) The total reported viewership for the episode in millions, including on ITV HD and ITV+1 where available
(numeric) Available for seasons 1-9, this is where the episode ranked among all shows on UK TV that week
(numeric) Available for seasons 10-24, this is where the episode ranked among all shows on ITV that week
https://www.barb.co.uk/viewing-data/weekly-top-30/
{
# Which was the least viewed episode ever?
ratings[which.min(ratings$viewership_millions), c("season", "episode", "viewership_millions")]
# Which was the most viewed episode ever?
ratings[which.max(ratings$viewership_millions), c("season", "episode", "viewership_millions")]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.