wiki_hot_100s {billboard} | R Documentation |
A data set containing 57 years of Billboards Hot 100 songs. The data is scraped from Wikipedia from the urls 'https://en.wikipedia.org/wiki/Billboard_Year-End_Hot_100_singles_of_' and then the year added. Example: https://en.wikipedia.org/wiki/Billboard_Year-End_Hot_100_singles_of_1960. One year has more than a 100 songs due to a tie.
wiki_hot_100s
A data frame with 5701 rows and 4 variables:
the rank that the song had that year
the title of the song
the artist of the song
year
if (require("dplyr")) {
data(wiki_hot_100s)
wiki_hot_100s %>% glimpse()
}