The raw data behind the story "A Statistical Analysis of the Work of Bob Ross" https://fivethirtyeight.com/features/a-statistical-analysis-of-the-work-of-bob-ross/. An analysis using this data was contributed by Jonathan Bouchet as a package vignette at https://fivethirtyeightdata.github.io/fivethirtyeightdata/articles/bob_ross.html.
bob_ross
A data frame with 403 rows representing episodes and 71 variables:
Episode code
Season number
Episode number
Title of episode
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
Present (1) or not (0)
See https://github.com/fivethirtyeight/data/tree/master/bob-ross
# To convert data frame to tidy data (long) format, run: library(dplyr) library(tidyr) library(stringr) bob_ross_tidy <- bob_ross %>% pivot_longer(-c(episode, season, episode_num, title), names_to = "object", values_to = "present") %>% mutate(present = as.logical(present)) %>% arrange(episode, object)