Description Usage Arguments Author(s) Examples
View source: R/lib_metadata_crossref.R
Extracts Crossref metadata from the Crossref API using the item's Digital Object Identifier (DOI).
1 | lib_metadata_crossref(doi, par = TRUE, ncores = NULL)
|
doi |
Character vector A vector of Digital Object Identifiers. |
par |
Logical.
If |
ncores |
Integer.
Number of cores to use if |
Ivan Jacob Agaloos Pesigan
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Single DOI
doi <- "https://doi.org/10.1016/j.adolescence.2014.04.012"
lib_metadata_crossref(
doi = doi,
par = FALSE
)
doi <- "10.1016/j.adolescence.2014.04.012"
lib_metadata_crossref(
doi = doi,
par = FALSE
)
# Vector of DOIs
doi <- c(
"https://doi.org/10.1016/j.adolescence.2014.04.012",
"https://doi.org/10.1007/s11469-015-9612-8"
)
lib_metadata_crossref(
doi = doi,
par = FALSE
)
doi <- c(
"10.1016/j.adolescence.2014.04.012",
"10.1007/s11469-015-9612-8"
)
lib_metadata_crossref(
doi = doi,
par = FALSE
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.