Learn R Programming

spRingsteen (version 0.1.0)

setlists: 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

Arguments

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

Run this code
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))

Run the code above in your browser using DataLab