Skip to content

Spotify Music Data

This dataset consists of ~600 songs that were in the top songs of the year from 2010 to 2019 (as measured by Billboard). You can explore interesting song data pulled from Spotify such as the beats per minute, amount of spoken words, loudness, and energy of every song.

library(tidyverse)
music <- readr::read_csv('data/spotify_top_music.csv.gz')
head(music)
music_vars <- readr::read_csv('data/spotify_top_music_vars.csv.gz')
head(music_vars)