- Analyze the Million Song Dataset generated by The Echo Nest and Labrosa
- Create a song recommender using metadata from the Million Song Dataset.
- Create a song recommender demo using R and Shiny for songs by US recording artist 'Prince'
Telvis Calhoun
technicalelvis.com
df <- readRDS("data/songs.rds")
names(df)
## [1] "artist_name" "title"
## [3] "release" "song_hotttnesss"
## [5] "tempo" "loudness"
## [7] "energy" "danceability"
## [9] "duration" "artist_familiarity"
## [11] "artist_hotttnesss" "artist_latitude"
## [13] "artist_location" "artist_longitude"
## [15] "end_of_fade_in" "key"
## [17] "key_confidence" "song_id"
## [19] "start_of_fade_out" "time_signature"
## [21] "time_signature_confidence" "track_id"
song_hotttnesss
and loudness
as numeric features to model songs in a 2-dimensional space.song_hotttnesss
and loudness
5 nearest songs
in the 2D space using a euclidean distance metric. song_hotttnesss
and loudness