Spotify - All Time Top 2000s Mega Dataset
Dataset containing audio features of Top 2000 songs on Spotify of all time.
@kaggle.iamsumat_spotify_top_2000s_mega_dataset
Dataset containing audio features of Top 2000 songs on Spotify of all time.
@kaggle.iamsumat_spotify_top_2000s_mega_dataset
This dataset contains audio statistics of the top 2000 tracks on Spotify. The data contains about 15 columns each describing the track and it's qualities. Songs released from 1956 to 2019 are included from some notable and famous artists like Queen, The Beatles, Guns N' Roses, etc.
http://sortyourmusic.playlistmachinery.com/ by @plamere uses Spotify API to extract the audio features from the tracks given the Spotify Playlist URI. This data contains audio features like Danceability, BPM, Liveness, Valence(Positivity) and many more.
Each feature's description has been given in detail below.
This data is extracted from the Spotify playlist - Top 2000s on PlaylistMachinery(@plamere) using Selenium with Python. More specifically, it was scraped from http://sortyourmusic.playlistmachinery.com/. Thanks to Paul for providing a free and open source to extract features and do cool stuff with your Spotify playlists!
This is a very fun dataset to explore and find out unique links which land songs in the Top 2000s. With this dataset, I wanted to be able to answer some questions like:
CREATE TABLE spotify_2000 (
"index" BIGINT,
"title" VARCHAR,
"artist" VARCHAR,
"top_genre" VARCHAR,
"year" BIGINT,
"beats_per_minute_bpm" BIGINT -- Beats Per Minute (BPM),
"energy" BIGINT,
"danceability" BIGINT,
"loudness_db" BIGINT -- Loudness (dB),
"liveness" BIGINT,
"valence" BIGINT,
"length_duration" BIGINT -- Length (Duration),
"acousticness" BIGINT,
"speechiness" BIGINT,
"popularity" BIGINT
);Anyone who has the link will be able to view this.