Description Usage Arguments Author(s) Examples
View source: R/lib_extract_isbn_crossref.R
Extract ISBN from the result of lib_metadata_crossref.
1 2 3 4 5 6 7 |
fromdoi |
Logical.
If |
doi |
Character vector A vector of Digital Object Identifiers. |
cf |
R Object.
Result of |
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 29 30 31 32 33 34 35 | # Single DOI
doi <- "10.1007/978-0-387-98141-3"
cf <- lib_metadata_crossref(
doi = doi,
par = FALSE
)
lib_extract_isbn_crossref(
fromdoi = TRUE,
doi = doi,
par = FALSE
)
lib_extract_isbn_crossref(
fromdoi = FALSE,
cf = cf,
par = FALSE
)
# Vector of DOIs
doi <- c(
"https://doi.org/10.1007/978-0-387-71762-3",
"10.1007/978-0-387-98141-3"
)
cf <- lib_metadata_crossref(
doi = doi,
par = FALSE
)
lib_extract_isbn_crossref(
fromdoi = TRUE,
doi = doi,
par = FALSE
)
lib_extract_isbn_crossref(
fromdoi = FALSE,
cf = cf,
par = FALSE
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.