View source: R/get-attachment.R
get_attachment | R Documentation |
Permet de récupérer les données d'un attachment
get_attachment(data = NULL, dataset = NULL)
data |
le résultat d'une recherche par |
dataset |
optionnel, le dataset parent de l'attachement. |
un objet dido_attachment()
Other attachment:
add_attachment()
,
add_or_update_attachment()
,
delete_attachment()
,
dido_attachment()
,
list_attachments()
,
replace_attachment()
,
update_attachment()
library(dplyr, warn.conflicts = FALSE)
dataset <- add_or_update_dataset(
title = "Un dataset pour les attachement",
description = "Description des données statistiques",
topic = "Transports",
frequency = "unknown",
)
add_or_update_attachment(
dataset = dataset,
title = "title",
description = "description",
file_name = dido_example("attachment.txt")
)
dataset %>%
list_attachments() %>%
slice(1) %>%
get_attachment()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.