项目作者: ropensci

项目描述 :
Client for the Open Citations Corpus
高级语言: R
项目地址: git://github.com/ropensci/citecorp.git
创建时间: 2019-02-01T01:19:37Z
项目社区:https://github.com/ropensci/citecorp

开源协议:Other

下载


citecorp

Project Status: Active - The project has reached a stable, usable
state and is being actively
developed.
R-check
rstudio mirror
downloads
cran
version

Client for the Open Citations Corpus http://opencitations.net (OCC)

OCC created their own identifiers called Open Citation Identifiers
(oci), e.g.,

  1. 06180334099-06101759895

You are probably not going to be using oci identifiers, but rather DOIs
and/or PMIDs and/or PMCIDs. See ?oc_lookup for methods for
cross-walking among identifier types.

If you’d like to use the OpenCitations Sparql endpoint yourself you can
find that at http://opencitations.net/sparql

Install

CRAN version

  1. install.packages("citecorp")

Development version

  1. remotes::install_github("ropensci/citecorp")
  1. library("citecorp")

Methods for converting IDs

  1. oc_doi2ids("10.1039/c9sc00991d")
  2. #> doi paper pmcid
  3. #> 1 10.1039/c9sc00991d https://w3id.org/oc/meta/br/061103888040 PMC6422012
  4. #> 2 10.1039/c9sc00991d https://w3id.org/oc/meta/br/061103888040 PMC6422012
  5. #> pmid
  6. #> 1 31857888
  7. #> 2 31859689
  8. oc_pmid2ids("31857888")
  9. #> doi paper pmcid
  10. #> 1 10.1039/c9sc00991d https://w3id.org/oc/meta/br/061103888040 PMC6422012
  11. #> 2 10.1039/c9sc02702e https://w3id.org/oc/meta/br/061103888040 PMC6422012
  12. #> pmid
  13. #> 1 31857888
  14. #> 2 31857888
  15. oc_pmcid2ids("PMC6422012")
  16. #> doi paper pmcid
  17. #> 1 10.1039/c9sc00991d https://w3id.org/oc/meta/br/061103888040 PMC6422012
  18. #> 2 10.1039/c9sc00991d https://w3id.org/oc/meta/br/061103888040 PMC6422012
  19. #> 3 10.1039/c9sc02702e https://w3id.org/oc/meta/br/061103888040 PMC6422012
  20. #> 4 10.1039/c9sc02702e https://w3id.org/oc/meta/br/061103888040 PMC6422012
  21. #> pmid
  22. #> 1 31859689
  23. #> 2 31857888
  24. #> 3 31857888
  25. #> 4 31859689

You can pass in more than one identifer to each of the above functions:

  1. oc_doi2ids(oc_dois[1:6])
  2. #> doi paper
  3. #> 1 10.1097/rli.0b013e31821eea45 https://w3id.org/oc/meta/br/0630171503
  4. #> 2 10.1111/j.2042-3306.1989.tb02167.x https://w3id.org/oc/meta/br/062601718144
  5. #> 3 10.1128/jvi.00758-10 https://w3id.org/oc/meta/br/061401102284
  6. #> 4 10.1016/s0168-9525(99)01798-9 https://w3id.org/oc/meta/br/062603752185
  7. #> 5 10.1177/0148607114529597 https://w3id.org/oc/meta/br/061102146039
  8. #> 6 10.1111/1567-1364.12217 https://w3id.org/oc/meta/br/06603713132
  9. #> 7 10.1016/s0168-9525(99)01798-9 https://w3id.org/oc/meta/br/06170394225
  10. #> pmid
  11. #> 1 21577119
  12. #> 2 2670542
  13. #> 3 20702630
  14. #> 4 10461200
  15. #> 5 24711119
  16. #> 6 25263709
  17. #> 7 <NA>

COCI methods

OpenCitations Index of Crossref open DOI-to-DOI references

If you don’t load tibble you get normal data.frame’s

  1. library(tibble)
  2. doi1 <- "10.1108/jd-12-2013-0166"
  3. # references
  4. oc_coci_refs(doi1)
  5. #> # A tibble: 44 × 7
  6. #> timespan citing creation oci author_sc journal_sc cited
  7. #> * <chr> <chr> <chr> <chr> <chr> <chr> <chr>
  8. #> 1 P1Y10M10D 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.5…
  9. #> 2 P9Y2M5D 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  10. #> 3 P1Y5M 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  11. #> 4 P1Y5M 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  12. #> 5 P43Y 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  13. #> 6 P5Y10M20D 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  14. #> 7 P5Y2M27D 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  15. #> 8 P2Y0M 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  16. #> 9 P49Y7M9D 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  17. #> 10 P2Y2M 10.1108/jd-12-2013-0166 2015-03-09 0618… no no 10.1…
  18. #> # ℹ 34 more rows
  19. # citations
  20. oc_coci_cites(doi1)
  21. #> # A tibble: 34 × 7
  22. #> timespan citing creation oci author_sc journal_sc cited
  23. #> * <chr> <chr> <chr> <chr> <chr> <chr> <chr>
  24. #> 1 P6Y0M1D 10.7717/peerj-cs.421 2021-03… 0610… no no 10.1…
  25. #> 2 P4Y8M16D 10.3233/ds-190019 2019-11… 0610… no no 10.1…
  26. #> 3 P4Y8M16D 10.3233/ds-190016 2019-11… 0610… yes no 10.1…
  27. #> 4 P3Y10M12D 10.3233/sw-180307 2019-01… 0610… no no 10.1…
  28. #> 5 P1Y0M14D 10.3233/sw-160224 2016-03… 0610… yes no 10.1…
  29. #> 6 P2Y4M 10.1057/s41275-017-0070-x 2017-08 0610… no no 10.1…
  30. #> 7 P2Y11M20D 10.7287/peerj.preprints.… 2018-03… 0611… no no 10.1…
  31. #> 8 P1Y11M5D 10.1101/108480 2017-02… 0613… no no 10.1…
  32. #> 9 P3Y10M29D 10.59350/zcrhs-r7h02 2019-02… 0613… no no 10.1…
  33. #> 10 P2Y 10.1007/978-3-030-01379-… 2018 0615… yes no 10.1…
  34. #> # ℹ 24 more rows
  35. # metadata
  36. oc_coci_meta(doi1)
  37. #> # A tibble: 1 × 13
  38. #> oa_link issue reference source_title doi citation year citation_count title
  39. #> * <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
  40. #> 1 "" 2 10.1136/… Journal Of … 10.1… 10.1057… 2015… 34 Sett…
  41. #> # ℹ 4 more variables: page <chr>, source_id <chr>, volume <chr>, author <chr>

Meta

  • Please report any issues or
    bugs
  • License: MIT
  • Get citation information for citecorp in R doing citation(package = 'citecorp')
  • Please note that this project is released with a Contributor Code
    of
    Conduct
    .
    By participating in this project you agree to abide by its terms.

rofooter