Package 'datardis'

Title: Data from the Doctor Who Series
Description: Explore data related to the Doctor Who TV series.
Authors: Jonathan Kitt [aut, cre]
Maintainer: Jonathan Kitt <[email protected]>
License: MIT + file LICENSE
Version: 0.0.4
Built: 2024-06-07 05:02:45 UTC
Source: https://github.com/kittjonathan/datardis

Help Index


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)