episodes {alone} | R Documentation |
Episodes
Description
Contains details of each episode including the title, number of viewers, beginning quote and IMDb rating
Usage
episodes
Format
This data frame contains the following columns:
version
Country code for the version of the show
season
The season number
episode_number_overall
Episode number across seasons
episode
Episode number
title
Episode title
day_start
The day the episode started on
n_remaining
How are remaining at the start of the episode
air_date
Date the episode originally aired
viewers
Number of viewers in the US (millions)
quote
The beginning quote
author
Author of the beginning quote
imdb_rating
IMDb rating of the episode
n_ratings
Number of ratings given for the episode
Source
https://en.wikipedia.org/wiki/List_of_Alone_episodes#Season_1_(2015)_-_Vancouver_Island
Examples
library(dplyr)
library(ggplot2)
episodes |>
ggplot(aes(episode_number_overall, viewers, colour = as.factor(season))) +
geom_line()
[Package alone version 0.4 Index]