concerts {spRingsteen}R Documentation

Metadata for concerts in the spRingsteen dataset.

Description

Metadata for concerts played by Bruce Springsteen both solo and with numerous bands from the years 1973 to present day. Can be joined with setlists using gig_key.

Usage

concerts

Format

A data frame with 6 variables:

gig_key

Primary key of the data frame.

date

Date of the concert.

location

Full location of concert including venue name.

state

State concert was performed in (if in USA).

city

City in which the concert was performed (if not in USA).

country

Country concert was performed in.

Source

http://brucebase.wikidot.com/

Examples

library(dplyr)
# What countries have been played in the most?

concerts %>%
  count(country, sort = TRUE)

# What decade did most shows take place in?

library(lubridate)

concerts %>%
  select(date) %>%
  mutate(decade = (year(date) %/% 10) * 10) %>%
  count(decade)


[Package spRingsteen version 0.1.0 Index]