setlists | R Documentation |
Metadata for the setlists of concerts played by Bruce Springsteen both solo and with numerous bands from the years 1973 to present day.
setlists
A data frame with4 variables:
Key associated with the concert which the setlist is from.
Key associated with the song played.
Name of the song played.
Order of appearance for the song in the setlist.
library(dplyr)
# what are the top five most played songs?
setlists %>%
count(song, sort = TRUE) %>%
slice(1:5)
# what is the average show length?
setlists %>%
count(gig_key) %>%
summarise(ave_length = mean(n))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.