tours {spRingsteen}R Documentation

Tour information for concerts in the spRingsteen dataset.

Description

Data describing the tours associated with concerts played by Bruce Springsteen both solo and with numerous bands from the years 1973 to present day. Note that concerts prior to 1973 and non-tour, e.g., practice shows, promotion shows, have been removed. Furthermore some of the shows are associated with more than one tour as such some of the entries from concerts appear twice. Can be joined with setlists or concerts using gig_key.

Usage

tours

Format

A data frame with 2 variables:

gig_key

Primary key of the data frame.

tour

Tour associated with the concert. Note some concerts have more than one tour associated with them.

Source

http://brucebase.wikidot.com/

Examples

library(dplyr)
# How many shows were on each tour?

tours %>%
  count(tour, sort = TRUE)


[Package spRingsteen version 0.1.0 Index]