spotify_by_genre | R Documentation |
This dataset contains information on 6,000 tracks from Spotify, categorized by one of six genres. It includes various audio features, metadata about the tracks, and an indicator of popularity. The dataset is useful for analysis of music trends, popularity prediction, and genre-specific characteristics.
spotify_by_genre
A data frame with 6,000 rows and 21 columns:
character
. Spotify ID for the track. See: https://developer.spotify.com/documentation/web-api/
character
. Names of the artists associated with the track.
character
. Name of the album on which the track appears.
character
. Name of the track.
numeric
. Popularity score of the track (0-100). See: https://developer.spotify.com/documentation/web-api/reference/#/operations/get-track
numeric
. Duration of the track in milliseconds.
logical
. Whether the track has explicit content.
numeric
. Danceability score of the track (0-1). See: https://developer.spotify.com/documentation/web-api/reference/#/operations/get-audio-features
numeric
. Energy score of the track (0-1).
numeric
. The key the track is in (0-11 where 0 = C, 1 = C#/Db, etc.).
numeric
. The loudness of the track in decibels (dB).
numeric
. Modality of the track (0 = minor, 1 = major).
numeric
. Speechiness score of the track (0-1).
numeric
. Acousticness score of the track (0-1).
numeric
. Instrumentalness score of the track (0-1).
numeric
. Liveness score of the track (0-1).
numeric
. Valence score of the track (0-1), indicating the musical positiveness.
numeric
. Tempo of the track in beats per minute (BPM).
numeric
. Time signature of the track (typically 3, 4, or 5).
character
. Genre of the track (country, deep-house, dubstep, hip-hop, metal, and rock).
character
. Indicates whether the track is considered popular ("popular") or not ("not popular"). Popularity is defined as a score of 50 or higher which corresponds to the 75th percentile of the popularity
column.
https://developer.spotify.com/documentation/web-api/
data(spotify_by_genre)
head(spotify_by_genre)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.