Title: | Data from the Doctor Who Series |
Version: | 0.0.5 |
Description: | Explore data related to the Doctor Who TV series. |
License: | MIT + file LICENSE |
Encoding: | UTF-8 |
LazyData: | true |
RoxygenNote: | 7.3.2 |
Imports: | dplyr |
Suggests: | testthat (≥ 3.0.0) |
Config/testthat/edition: | 3 |
Depends: | R (≥ 2.10) |
NeedsCompilation: | no |
Packaged: | 2024-08-20 08:21:12 UTC; jkitt |
Author: | Jonathan Kitt [aut, cre] |
Maintainer: | Jonathan Kitt <jonathan.kitt@proton.me> |
Repository: | CRAN |
Date/Publication: | 2024-08-21 09:50:02 UTC |
List of Dr Who directors
Description
List of directors for all episodes from the revived Doctor Who era (2005-present)
Usage
drwho_directors
Format
This data frame contains the following columns:
story_number
Story number
director
Episode's director
Source
https://en.wikipedia.org/wiki/List_of_Doctor_Who_episodes_(2005-present)
Examples
library(dplyr)
drwho_directors |>
count(director, sort = TRUE) |>
head(5)
List of Dr Who episodes
Description
List of all episodes from the revived Doctor Who era (2005-present)
Usage
drwho_episodes
Format
This data frame contains the following columns:
era
"classic" or "revived"
season_number
Season number
serial_title
Serial title if available
story_number
Story number
episode_number
Episode number in season
episode_title
Episode Title
type
"episode" or "special"
first_aired
Date the episode first aired in the U.K.
production_code
Episode's production code if available
uk_viewers
Number of U.K. viewers (millions)
rating
Episode's rating
duration
Episode's duration in minutes
Source
https://en.wikipedia.org/wiki/List_of_Doctor_Who_episodes_(2005-present)
Examples
library(dplyr)
drwho_episodes |>
filter(type == "special")
List of Dr Who writers
Description
List of writers for all episodes from the revived Doctor Who era (2005-present)
Usage
drwho_writers
Format
This data frame contains the following columns:
story_number
Story number
writer
Episode's writer
Source
https://en.wikipedia.org/wiki/List_of_Doctor_Who_episodes_(2005-present)
Examples
library(dplyr)
drwho_writers |>
count(writer, sort = TRUE) |>
head(5)
List of Torchwood directors
Description
List of directors for all episodes from Torchwood series (2006-2011)
Usage
torchwood_directors
Format
This data frame contains the following columns:
story_number
Story number
director
Episode's director
Source
https://en.wikipedia.org/wiki/List_of_Torchwood_episodes
Examples
library(dplyr)
torchwood_directors |>
count(director) |>
arrange(desc(n)) |>
head(5)
List of Torchwood episodes
Description
List of all episodes from the Torchwood series (2006-2011)
Usage
torchwood_episodes
Format
This data frame contains the following columns:
season_number
Season number
serial_title
Serial title if available
story_number
Story number
episode_number
Episode number in season
episode_title
Episode Title
first_aired
Date the episode first aired in the U.K.
production_code
Episode's production code if available
uk_viewers
Number of U.K. viewers (millions)
duration
Episode's duration in minutes
Source
https://en.wikipedia.org/wiki/List_of_Torchwood_episodes
Examples
library(dplyr)
torchwood_episodes |>
filter(uk_viewers >= 5)
List of Torchwood writers
Description
List of directors for all episodes from Torchwood series (2006-2011)
Usage
torchwood_writers
Format
This data frame contains the following columns:
story_number
Story number
writer
Episode's writer
Source
https://en.wikipedia.org/wiki/List_of_Torchwood_episodes
Examples
library(dplyr)
torchwood_writers |>
count(writer, sort = TRUE) |>
head(5)