Top 100 Songs
Most Streamed songs with all their features extracted from the Spotify API
@kaggle.amaanansari09_top_100_songs
Most Streamed songs with all their features extracted from the Spotify API
@kaggle.amaanansari09_top_100_songs
I wanted to make a recommendation system and used these features as my dependent variables and I thought this would be a good idea to share this dataset
The whole data extracted is from the Spotify API
The following data is of the year 2021
Ps. (For all time data you can check my dataset :- https://www.kaggle.com/datasets/amaanansari09/most-streamed-songs-all-time)
CREATE TABLE top_100_streamed_songs (
"id" VARCHAR,
"name" VARCHAR,
"duration" DOUBLE,
"energy" DOUBLE,
"key" BIGINT,
"loudness" DOUBLE,
"mode" BIGINT,
"speechiness" DOUBLE,
"acousticness" DOUBLE,
"instrumentalness" DOUBLE,
"liveness" DOUBLE,
"valence" DOUBLE,
"tempo" DOUBLE,
"danceability" DOUBLE
);Anyone who has the link will be able to view this.