A data set with the different genre categories for each Pixar film.
genres
A data frame with 128 rows and 2 variables:
name of film
genre film is categorized into
This data set is put into a tidy format, where each row is a film-genre data point. Each film can have multiple genres. For example, Toy Story is categorized into five genres.
genres
#> # A tibble: 128 × 2
#> film genre
#> <chr> <chr>
#> 1 Toy Story Animation
#> 2 Toy Story Adventure
#> 3 Toy Story Comedy
#> 4 Toy Story Family
#> 5 Toy Story Fantasy
#> 6 A Bug's Life Animation
#> 7 A Bug's Life Adventure
#> 8 A Bug's Life Comedy
#> 9 A Bug's Life Family
#> 10 Toy Story 2 Animation
#> # … with 118 more rows