View source: R/get_pages_api.R
update_scrobbles | R Documentation |
Companion function to 'download_scrobbles'. Only downloads the scrobbles that have been stored since you ran 'download_scrobbles'.
update_scrobbles(
data,
timestamp_column,
username = get_lastfm_credentials("username"),
api_key = get_lastfm_credentials("key")
)
data |
A dataframe outputted by 'download_scrobbles' |
timestamp_column |
The 'date_unix' column in your dataframe |
username |
Last.fm API username |
api_key |
Last.fm API key |
A dataframe
## Not run:
mydat <- download_scrobbles(username = "your_username", api_key = "your_api_key")
update_dat <- update_scrobbles(mydat,
"date_unix",
username = "your_username",
api_key = "your_api_key")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.