R/albums2000.R

#' Top 50 albums for every month from Jan 2000 to Jun 2021 from chart2000.com
#'
#' A dataset containing the top 50 albums per month from January 2000 to June 2021
#' according to charts from the USA, UK, Germany, France, Canada, Australia, Italy and Spain.
#'
#' @format A data frame with 12900 rows and 13 variables:
#' \describe{
#'    \item{year_month}{year and month, character, format "2000-01"}
#'    \item{month}{month allocated to entry, ordered factor, levels from 1 = "Jan" to 12 = "Dec"}
#'    \item{year}{year allocated to entry, numeric, 4 digits}
#'    \item{position}{total rank, numeric from 1 to 50}
#'    \item{artist}{name of artist / band, character}
#'    \item{album}{album title, character}
#'    \item{indicativerevenue}{estimated revenue across whole music chain in thousands of dollars; numeric}
#'    \item{us}{peak position in US in that month, numeric, contains NAs}
#'    \item{uk}{peak position in UK in that month, numeric, contains NAs}
#'    \item{de}{peak position in Germany in that month, numeric, contains NAs}
#'    \item{fr}{peak position in France in that month, numeric, contains NAs}
#'    \item{ca}{peak position in Canada in that month, numeric, contains NAs}
#'    \item{au}{peak position in Australia in that month, numeric, contains NAs}
#' }
#' @source \url{https://chart2000.com/about}
#' @examples
#' data(albums2000)        # Lazy loading
#'
#' ## Access file version number:
#' attr(albums2000, "version")
#' str(albums2000)
"albums2000"
fjodor/chartmusicdata documentation built on Jan. 29, 2024, 6:42 p.m.