get_publications.publications {neotoma2} | R Documentation |
Update metadata for a set of publication objects.
Description
Update metadata for a set of publication objects.
Usage
## S3 method for class 'publications'
get_publications(x, ...)
Arguments
x |
integer A publication |
... |
|
Value
publications
object
Examples
# Take a publication object and purposely degrade the metadata:
bad_pub <- get_publications(c(666, 667, 668))
# Note this only changes the reported year, not the citation string.
bad_pub[[1]]@year <- "1923"
bad_pub[[1]]@publicationid <- as.character(NA)
updated_pubs <- get_publications(bad_pub)
# Only the first publication object has any matches. It's the only one
# that is missing its publicaitonid.
attr(updated_pubs[[1]], "matches")
attr(updated_pubs[[2]], "matches")
# we see the proper citation in the record:
updated_pubs[[1]] <- attr(updated_pubs[[1]], "matches")[[1]]
[Package neotoma2 version 1.0.4 Index]