#' Metadata for concerts in the spRingsteen dataset.
#'
#' Metadata for concerts played by Bruce Springsteen both solo and
#' with numerous bands from the years 1973 to present day. Can be joined with
#' \code{\link{setlists}} using \code{gig_key}.
#'
#' @format A data frame with 6 variables:
#' \describe{
#' \item{gig_key}{Primary key of the data frame.}
#' \item{date}{Date of the concert.}
#' \item{location}{Full location of concert including venue name.}
#' \item{state}{State concert was performed in (if in USA).}
#' \item{city}{City in which the concert was performed (if not in USA).}
#' \item{country}{Country concert was performed in.}
#' }
#'
#' @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)
#'
#' @source \url{http://brucebase.wikidot.com/}
"concerts"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.