Description Usage Arguments Details Author(s) See Also Examples
Get records for the data sources from the OAI-PMH list, and others not on that list, including PMC, DataCite, Hindawi Journals, Dryad, and Pensoft Journals.
1 2 | md_getrecord(provider = NULL, identifier = NULL,
metadataPrefix = "oai_dc", fuzzy = FALSE, brief = TRUE)
|
provider |
The metadata provider. |
identifier |
The OAI-PMH identifier for the record. |
metadataPrefix |
Specifies the metadata format that the records will be returned in. |
fuzzy |
Do fuzzy search or not (default FALSE). Fuzzy uses agrep. |
brief |
Give brief results (just a subset of columns) |
To query multiple different identifier's from a single provider, just pass in multiple identifiers like c("identifier1", "identifier2"). To query identifiers from different providers, just use separate calls to md_getrecord.
Scott Chamberlain [email protected]
md_identify
, md_listidentifiers
,
md_listmetadataformats
, md_listrecords
,
md_listsets
, count_identifiers
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
# Single provider, one identifier
md_getrecord(provider = "pensoft", identifier = "10.3897/zookeys.1.10")
# Single provider, multiple identifiers
md_getrecord(provider = "pensoft", identifier = c("10.3897/zookeys.1.10","10.3897/zookeys.4.57"))
# More than one provider found - or just easier than typing in
# the whole provider name - Choose 15
md_getrecord(provider = "advances",
identifier = "oai:ojs.www.academypublisher.com:article/5460",
fuzzy=TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.