ZoteroDoi {c2z} | R Documentation |
Connects with doi.org to create metadata
ZoteroDoi(doi, meta = list(), silent = TRUE, log = list())
doi |
A digital object identifier |
meta |
A list collecting all metadata used to create , Default: list() |
silent |
c2z is noisy, tell it to be quiet, Default: TRUE |
log |
A list for storing log elements, Default: list() |
Please see https://oeysan.github.io/c2z/
A Zotero-type matrix (tibble)
http_error
, GET
,
RETRY
rename
, html_attr
,
html_text
, reexports
,
html_children
, html_name
bind
, arrange
# Simple use of `ZoteroDoi`
example <- ZoteroDoi("10.1126/sciadv.abd1705")
# Print index using `ZoteroIndex`
if (any(nrow(example$data))) {
ZoteroIndex(example$data) |>
dplyr::select(name) |>
print(width = 80)
}