Skip to contents

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.

Examples

library(dplyr)
# what are the top five most played songs?

setlists %>%
  count(song, sort = TRUE) %>%
  slice(1:5)
#> # A tibble: 5 × 2
#>   song                        n
#>   <chr>                   <int>
#> 1 Born To Run              1712
#> 2 Thunder Road             1440
#> 3 The Promised Land        1388
#> 4 Badlands                 1196
#> 5 Tenth Avenue Freeze-Out  1107

# what is the average show length?

setlists %>%
  count(gig_key) %>%
  summarise(ave_length = mean(n))
#> # A tibble: 1 × 1
#>   ave_length
#>        <dbl>
#> 1       19.4