get_playlist_audio_features | R Documentation |
This function returns the popularity and audio features for every song for a given set of playlists on Spotify
get_playlist_audio_features(
username,
playlist_uris,
authorization = get_spotify_access_token()
)
username |
String of Spotify username. Can be found on the Spotify app. |
playlist_uris |
Character vector of Spotify playlist uris. Can be found within the Spotify App |
authorization |
Required. A valid access token from the Spotify Accounts service.
See the Web API authorization Guide for more details. Defaults to |
A data frame with the audio features and popularity variables of playlists.
Other musicology functions:
get_artist_audio_features()
,
get_genre_artists()
,
get_track_audio_analysis()
,
get_track_audio_features()
,
get_user_audio_features()
## Not run:
playlist_username <- 'spotify'
playlist_uris <- c('37i9dQZF1E9T1oFsQFg98K', '37i9dQZF1CyQNOI21QVf3p')
playlist_audio_features <- get_playlist_audio_features(playlist_username, playlist_uris)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.