Baselight

Song Popularity Dataset

Song Popularity Prediction - Regression Problem

@kaggle.yasserh_song_popularity_dataset

Song Data
@kaggle.yasserh_song_popularity_dataset.song_data

  • 775.19 KB
  • 18835 rows
  • 15 columns
song_name

Song Name

song_popularity

Song Popularity

song_duration_ms

Song Duration Ms

acousticness

Acousticness

danceability

Danceability

energy

Energy

instrumentalness

Instrumentalness

key

Key

liveness

Liveness

loudness

Loudness

audio_mode

Audio Mode

speechiness

Speechiness

tempo

Tempo

time_signature

Time Signature

audio_valence

Audio Valence

Boulevard of Broken Dreams732623330.005520.4960.6820.000029480.0589-4.09510.0294167.0640.474
In The End662169330.01030.5420.85330.108-6.4070.0498105.25640.37
Seven Nation Army762317330.008170.7370.46299999999999990.4470.255-7.82799999999999910.0792123.88140.324
By The Way742169330.02640.4510.970.003550.102-4.93810.107122.44440.198
How You Remind Me562238260.00095399999999990.4470.7659999999999999100.113-5.06510.0313172.01140.574
Bring Me To Life802358930.008950.3160.9450.0000018540.396-3.1690.124189.93140.32
Last Resort811998930.0005040.5810.8870.001109999999999940.268-3.6590.062490.57840.7240000000000001
Are You Gonna Be My Girl762138000.001480.6130.9530.00058220.152-3.43510.0855105.04640.537
Mr. Brightside802225860.001080.330.93610.0926-3.6610.0917148.11240.2339999999999999
Sex on Fire812033460.001720.5420.9050.010490.136-5.65310.054153.39840.374

CREATE TABLE song_data (
  "song_name" VARCHAR,
  "song_popularity" BIGINT,
  "song_duration_ms" BIGINT,
  "acousticness" DOUBLE,
  "danceability" DOUBLE,
  "energy" DOUBLE,
  "instrumentalness" DOUBLE,
  "key" BIGINT,
  "liveness" DOUBLE,
  "loudness" DOUBLE,
  "audio_mode" BIGINT,
  "speechiness" DOUBLE,
  "tempo" DOUBLE,
  "time_signature" BIGINT,
  "audio_valence" DOUBLE
);