Description Usage Format Source Examples
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.
1 |
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
1 2 3 4 5 6 7 8 9 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.