setlists {spRingsteen}R Documentation

Metadata for setlists in the spRingsteen dataset.

Description

Metadata for the setlists of concerts played by Bruce Springsteen both solo and with numerous bands from the years 1973 to present day.

Usage

setlists

Format

A data frame with4 variables:

gig_key

Key associated with the concert which the setlist is from.

song_key

Key associated with the song played.

song

Name of the song played.

song_number

Order of appearance for the song in the setlist.

Source

http://brucebase.wikidot.com/

Examples

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))


[Package spRingsteen version 0.1.0 Index]