Spotify Global 2019 Most-streamed Tracks
top 1,717 tracks with audio features and artist info
@kaggle.prasertk_spotify_global_2019_moststreamed_tracks
top 1,717 tracks with audio features and artist info
@kaggle.prasertk_spotify_global_2019_moststreamed_tracks
Audio features and artist information of Spotify most-streamed tracks (global) in 2019. Tracks appearing in daily top 200 Spotify chart in 2019 were scraped. Total streams are calculated by summing up daily streams of each track.
...
...
...
CREATE TABLE spotify_global_2019_most_streamed_tracks_audio_features (
"country" VARCHAR,
"rank" DOUBLE,
"track_id" VARCHAR,
"streams" BIGINT,
"track_name" VARCHAR,
"artist" VARCHAR,
"url" VARCHAR,
"acousticness" DOUBLE,
"danceability" DOUBLE,
"energy" DOUBLE,
"instrumentalness" DOUBLE,
"liveness" DOUBLE,
"loudness" DOUBLE,
"speechiness" DOUBLE,
"valence" DOUBLE,
"tempo" DOUBLE,
"time_signature" BIGINT,
"duration_ms" BIGINT,
"key" BIGINT,
"mode" BIGINT,
"artist_id" VARCHAR,
"artist_popularity" BIGINT,
"artist_follower" BIGINT,
"artist_img" VARCHAR
);Anyone who has the link will be able to view this.