Spotify Playlists

r
tidyverse
data-analytics
Spotify
Author

Marcus Smith

Published

May 12, 2024

Let’s analyze the spotify_all data:

spotify_all <- read_csv('https://bcdanl.github.io/data/spotify_all.csv')


The data.frame spotify_all includes information about Spotify users’ playlists.


Variable Description

  • pid: playlist ID; unique ID for playlist

  • playlist_name: a name of playlist

  • pos: a position of the track within a playlist (starting from 0)

  • artist_name: name of the track’s primary artist

  • track_name: name of the track

  • duration_ms: duration of the track in milliseconds

  • album_name: name of the track’s album