| episodes | 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:
versionCountry code for the version of the show
seasonThe season number
episode_number_overallEpisode number across seasons
episodeEpisode number
titleEpisode title
day_startThe day the episode started on
n_remainingHow are remaining at the start of the episode
air_dateDate the episode originally aired
viewersNumber of viewers in the US (millions)
quoteThe beginning quote
authorAuthor of the beginning quote
imdb_ratingIMDb rating of the episode
n_ratingsNumber of ratings given for the episode
descriptionDescription of the episode from IMDb
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()