| scopus_combine | R Documentation |
Binds several scopus_records objects into a single one, renumbering
entry_number across the result and, optionally, dropping duplicates. This is
the safe way to merge separate fetches: plain rbind() would leave duplicate
entry numbers, and c() would return a list.
scopus_combine(..., dedupe = FALSE)
## S3 method for class 'scopus_records'
c(x, ...)
... |
Two or more scopus_records objects, or a single list of them. |
dedupe |
Logical. When |
x |
A scopus_records object (for the |
A scopus_records tibble. Per-retrieval attributes such as
total_results are not carried over, since they describe a single fetch.
scopus_fetch_plan(), which combines plan cells the same way.
# Merging a set with itself and de-duplicating recovers the distinct records.
scopus_combine(example_records, example_records, dedupe = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.