concerts | R Documentation |
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
.
concerts
A data frame with 6 variables:
Primary key of the data frame.
Date of the concert.
Full location of concert including venue name.
State concert was performed in (if in USA).
City in which the concert was performed (if not in USA).
Country concert was performed in.
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.