View source: R/replace-attachment.R
replace_attachment | R Documentation |
Remplace un fichier annexe
replace_attachment(attachment, file_name = NULL, remote_url = NULL)
attachment |
un objet |
file_name , remote_url |
le nom du fichier à verser ou l'url de l'attachement. |
un objet dido_attachment()
Other attachment:
add_attachment()
,
add_or_update_attachment()
,
delete_attachment()
,
dido_attachment()
,
get_attachment()
,
list_attachments()
,
update_attachment()
library(dplyr, warn.conflicts = FALSE)
dataset <- list_datasets() %>%
filter(title == "Un jeu de données de test")
attachment <- list_attachments(dataset) %>%
filter(title == "Un autre fichier annexe")
replace_attachment(
attachment = attachment,
file_name = dido_example("attachment.txt")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.