knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

The TV series ratings by series and episode was extracted from IMDB using the seriespicker package available on github. Due to the time consuming data extraction from IMDB (it takes roughly 3 hours to extract the data) the package comes with a prebuild dataframe called rating. Thus, Make sure to install and load the package prior to your data analysis.

devtools::install_github("alketh/seriespicker")
library("tibble")
library("seriespicker")
head(rating)

Data extraction

The data was extracted from IMDB. As a first step the series ID was read in. See data-raw/top-series.R for details. The IDs of the top 250 series are stored as character vector in ids.

glimpse(ids)

Figures

The figure sizes have been customised so that you can easily put two images side-by-side.

plot(1:10)
plot(10:1)

This is the first footnote^[Very simple footnote.]. This is the second footnote^[Wow, this is really easy.]



alketh/seriespicker documentation built on May 12, 2019, 4:25 p.m.