Description Usage Arguments Details Value Functions Examples
These functions return information on artits. None of these services require
authentication, except for artist_add_tags
and
artist_remove_tags
.
1 2 3 4 5 6 7 | artist_get_correction(artist)
artist_get_top_albums(artist, autocorrect = TRUE, n = NULL)
artist_get_top_tags(artist, autocorrect = TRUE, n = NULL)
artist_get_top_tracks(artist, autocorrect = TRUE, n = page_limit)
|
artist |
The artist name (required) |
autocorrect |
Transform misspelled artist names into correct artist names, returning the correct version instead (optional) |
n |
Number of entries to return (optional) |
If n
is omitted, the functions return:
All entries for artist_get_top_tags
, artist_get_top_albums
A number of entries up to page_limit
for artist_get_top_tracks
Correct artist name.
Data.frame of top n
albums with name, mbid ID, and last.fm url;
ordered by popularity.
Data.frame of top n
tags with count, name, and url; ordered by
popularity.
Data.frame of top n
tags with name, play count, number of
listeners, mbid ID, and last.fm url; ordered by popularity.
artist_get_correction
: Get corrected artist name
artist_get_top_albums
: Get artist top albums, ordered by popularity
artist_get_top_tags
: Get artist top tags, ordered by popularity
artist_get_top_tracks
: Get artist top tracks, ordered by popularity
1 2 3 4 | artist_get_correction("Radioheat")
artist_get_top_albums("Pink Floyd", n = 5)
artist_get_top_tags("Mogwai", n = 5)
artist_get_top_tracks("Radiohead", n = 5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.