get_artists_by_genre {DSpoty} | R Documentation |
Get Artists by Genre
Description
Function to search artists by genre
Usage
get_artists_by_genre(genre = is.character(), offset = "0",
limit = "10", year = 2019,
access_token = DSpoty::get_spotify_access_token())
Arguments
genre |
String of genre name to search for |
offset |
Integer indicating the offset of the first artist to return. Defaults to 0 (Spotify's API default value). |
limit |
Integer indicating the max number of artists to return. Defaults to 10, max of 50. |
year |
Year to search for |
access_token |
Spotify Web API token. Defaults to DSpoty::get_spotify_access_token() |
Value
Returns a data frame with the artist's information of a determined genre
Author(s)
Alberto Almui?a
Examples
## Not run:
rock_artists <- get_artists_by_genre("rock")
## End(Not run)
[Package DSpoty version 0.1.0 Index]