Spotify-YouTube Data
Start analysing the dataset with Python
@kaggle.rohitgrewal_spotify_youtube_data
Start analysing the dataset with Python
@kaggle.rohitgrewal_spotify_youtube_data
Project Video available on YouTube - https://youtu.be/xqtbBosGMl0
This dataset shows how popular songs perform on both Spotify and YouTube. It includes useful details about each song, like its name, artist, how many times it was played on Spotify, how many views it got on YouTube, and several audio features like danceability, energy, loudness, and tempo.
Using this dataset, we answered multiple questions with Python in our Project.
Q.1) Top 10 Artists - with the Highest Views on YouTube?
Q.2) Top 10 Tracks - with the Highest Streams on Spotify?
Q.3) What are the most common Album Types on Spotify? How many tracks belong to each album type?
Q.4) How do the Average Views, Likes, and Comments are compared between different Album Types?
Q.5) Top 5 YouTube Channels - based on the Views?
Q.6) The Top Most Track - based on Views?
Q.7) Which Top 7 Tracks have the highest Like-to-View ratio on YouTube?
Q.8) Top Albums having the Tracks with Maximum Danceability ?
Q.9) What is the Correlation between Views, Likes, Comments, and Stream?
These are the main Features/Columns available in the dataset :
CREATE TABLE spotify_youtube_dataset (
"unnamed_0" BIGINT -- Unnamed: 0,
"artist" VARCHAR,
"url_spotify" VARCHAR,
"track" VARCHAR,
"album" VARCHAR,
"album_type" VARCHAR,
"uri" VARCHAR,
"danceability" DOUBLE,
"energy" DOUBLE,
"key" DOUBLE,
"loudness" DOUBLE,
"speechiness" DOUBLE,
"acousticness" DOUBLE,
"instrumentalness" DOUBLE,
"liveness" DOUBLE,
"valence" DOUBLE,
"tempo" DOUBLE,
"duration_ms" DOUBLE,
"url_youtube" VARCHAR,
"title" VARCHAR,
"channel" VARCHAR,
"views" DOUBLE,
"likes" DOUBLE,
"comments" DOUBLE,
"description" VARCHAR,
"licensed" VARCHAR,
"official_video" VARCHAR,
"stream" DOUBLE
);
Anyone who has the link will be able to view this.