Skip to contents

Retrieve Relative Citation Ratio (RCR) for PubMed IDs.

Usage

rcr(pmids)

Arguments

pmids

vector of PubMed IDs to retrieve (max of 1000 at a time)

Value

a tibble including the following variables:

pmid

PubMed ID

authors

publication authors

citation_count

total citations

citations_per_year

mean citations per year

expected_citations_per_year

estimated

field_citation_rate

rate relative to field

is_research_article

boolean

journal

journal name abbr.

nih_percentile

percentile

relative_citation_ratio

RCR

title

article title

year

publication year

See URL for full details.

Examples

pmids <- c(26001965, 25015380)
rcr(pmids)
#> # A tibble: 2 × 25
#>       pmid  year title                 authors journal is_research_article
#>      <int> <int> <chr>                 <chr>   <chr>   <chr>              
#> 1 25015380  2014 High resolution mapp… D Suzi… Genome… Yes                
#> 2 26001965  2015 Global analysis of R… Sally … Nuclei… Yes                
#> # ℹ 19 more variables: relative_citation_ratio <dbl>,
#> #   nih_percentile <dbl>, human <dbl>, animal <dbl>,
#> #   molecular_cellular <dbl>, apt <dbl>, is_clinical <chr>,
#> #   citation_count <int>, citations_per_year <dbl>,
#> #   expected_citations_per_year <dbl>, field_citation_rate <dbl>,
#> #   provisional <chr>, x_coord <dbl>, y_coord <dbl>, cited_by_clin <lgl>,
#> #   cited_by <list>, references <list>, doi <chr>, last_modified <chr>